Skip to content

Instantly share code, notes, and snippets.

View Ultra-Instinct-05's full-sized avatar
:octocat:
Going even further beyond !

Ashwin Shenoy Ultra-Instinct-05

:octocat:
Going even further beyond !
View GitHub Profile
create (Command)
bound (Command)
resize_window (Command)
default_redo_or_repeat (Command)
show_changelog (Command)
show_about_window (Command)
remove_license (Command)
show_license_window (Command)
open_dir_in_sublime_text (Command)
open_in_editor (Command)
@OdatNurd
OdatNurd / .python-version
Last active July 8, 2024 03:37
Browse all Sublime Text commands provided by plugins
3.8
@jfcherng
jfcherng / CompletionItemDemo.py
Last active August 10, 2021 05:19
Sublime Text 4 demo: CompletionItem (Min ST version: 4073)
import sublime
import sublime_plugin
# @see https://discordapp.com/channels/280102180189634562/280157067396775936/697124502244687984
class CompletionItemDemoListener(sublime_plugin.EventListener):
def on_query_completions(self, view, prefix, locations):
return (
[
sublime.CompletionItem(
import sublime, sublime_plugin
import re
import threading
# This is an example plugin that simulates a completion interaction with an
# LSP server, while correctly apply any edits that are received from the
# server. This is trickier than you'd expect, due to the async nature the
# server communication, the async auto complete system in Sublime Text, and
# the use of row+col offsets within the LSP protocol.
@jfcherng
jfcherng / st4-changelog.md
Last active August 18, 2024 07:25
Sublime Text 4 changelog just because it's not on the official website yet.