├── .no-sublime-package ├── .python-version ├── Context.sublime-menu ├── Default.sublime-commands ├── Find Results.sublime-settings ├── Find Results.sublime-syntax ├── LICENSE ├── Preferences.sublime-settings-hints ├── README.md ├── Side Bar.sublime-menu ├── Syntax Test Results.sublime-menu ├── Tab Context.sublime-menu ├── block.py ├── encoding.py ├── line_endings.py ├── package_settings.py ├── set_unsaved_view_name.py ├── tabs.py ├── tests └── syntax_test_scopes.find-in-files ├── toggle.py └── view_resource.py /.no-sublime-package: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.8 -------------------------------------------------------------------------------- /Context.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/Context.sublime-menu -------------------------------------------------------------------------------- /Default.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/Default.sublime-commands -------------------------------------------------------------------------------- /Find Results.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/Find Results.sublime-settings -------------------------------------------------------------------------------- /Find Results.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/Find Results.sublime-syntax -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/LICENSE -------------------------------------------------------------------------------- /Preferences.sublime-settings-hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/Preferences.sublime-settings-hints -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/README.md -------------------------------------------------------------------------------- /Side Bar.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/Side Bar.sublime-menu -------------------------------------------------------------------------------- /Syntax Test Results.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/Syntax Test Results.sublime-menu -------------------------------------------------------------------------------- /Tab Context.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/Tab Context.sublime-menu -------------------------------------------------------------------------------- /block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/block.py -------------------------------------------------------------------------------- /encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/encoding.py -------------------------------------------------------------------------------- /line_endings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/line_endings.py -------------------------------------------------------------------------------- /package_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/package_settings.py -------------------------------------------------------------------------------- /set_unsaved_view_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/set_unsaved_view_name.py -------------------------------------------------------------------------------- /tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/tabs.py -------------------------------------------------------------------------------- /tests/syntax_test_scopes.find-in-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/tests/syntax_test_scopes.find-in-files -------------------------------------------------------------------------------- /toggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/toggle.py -------------------------------------------------------------------------------- /view_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathaxe/sublime-commands/HEAD/view_resource.py --------------------------------------------------------------------------------