├── .gitignore ├── LICENSE ├── README.md ├── config_popup ├── Default (Linux).sublime-keymap ├── Default (OSX).sublime-keymap ├── Default (Windows).sublime-keymap ├── README.md └── show_preferences_popup.py ├── customizations ├── Default.sublime-commands ├── Default.sublime-keymap ├── Main.sublime-menu ├── README.md ├── Sublimerge Macros.sublime-settings └── open_url_override.py ├── indent_test ├── Indent Tests.sublime-build ├── README.md └── run_indent_tests.py ├── macros ├── README.md ├── comment_line.sublime-macro └── xml_line_comment.sublime-macro ├── package_bootstrap ├── 1_my_package │ ├── Context.sublime-menu.sublime-ignored │ ├── Default.sublime-commands.sublime-ignored │ ├── MyPackage.sublime-syntax.sublime-ignored │ ├── README.md │ └── bootstrap.py ├── README.md ├── __init__.py ├── core │ ├── README.md │ ├── __init__.py │ ├── bootstrapper.py │ └── startup.py └── sublime │ ├── README.md │ ├── __init__.py │ ├── commands.py │ └── events.py ├── plugins ├── README.md ├── add_file_folder_to_sidebar.py ├── clear_console.py ├── double_click.py ├── eof_context.py ├── find_results_copy.py ├── generate_cmd_list.py ├── insert_to_column.py ├── local_font_size.py ├── log_toggler.py ├── menu_exec.py ├── minimap_toggler.py ├── move_amount.py ├── open_file_encoded.py ├── open_file_env.py ├── open_found_files.py ├── pattern_navigate.py ├── pipe_text.py ├── project_in_statusbar.py ├── reversed_selection_listener.py ├── run_current_file.py ├── scope_navigate.py ├── scoped_snippet.py ├── selection_to_top.py ├── selectionless_scroll_lines.py ├── set_status.py ├── set_vc_vars.py ├── snippets_with_selections.py ├── toggle_setting_ext.py ├── update_last_edited.py ├── visible_multi_selection.py └── wrap_text.py ├── quick_panel ├── README.md └── nested_panel.py ├── scratch_files ├── Default.sublime-commands ├── README.md └── scratch_buffer.py ├── session_cleaner ├── README.md ├── sublime_gui.sh └── sublime_session_clean.py └── snippets ├── README.md ├── keymap-context-entry.sublime-snippet ├── keymap-with-context.sublime-snippet └── keymap.sublime-snippet /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/README.md -------------------------------------------------------------------------------- /config_popup/Default (Linux).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/config_popup/Default (Linux).sublime-keymap -------------------------------------------------------------------------------- /config_popup/Default (OSX).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/config_popup/Default (OSX).sublime-keymap -------------------------------------------------------------------------------- /config_popup/Default (Windows).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/config_popup/Default (Windows).sublime-keymap -------------------------------------------------------------------------------- /config_popup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/config_popup/README.md -------------------------------------------------------------------------------- /config_popup/show_preferences_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/config_popup/show_preferences_popup.py -------------------------------------------------------------------------------- /customizations/Default.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/customizations/Default.sublime-commands -------------------------------------------------------------------------------- /customizations/Default.sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/customizations/Default.sublime-keymap -------------------------------------------------------------------------------- /customizations/Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/customizations/Main.sublime-menu -------------------------------------------------------------------------------- /customizations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/customizations/README.md -------------------------------------------------------------------------------- /customizations/Sublimerge Macros.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/customizations/Sublimerge Macros.sublime-settings -------------------------------------------------------------------------------- /customizations/open_url_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/customizations/open_url_override.py -------------------------------------------------------------------------------- /indent_test/Indent Tests.sublime-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/indent_test/Indent Tests.sublime-build -------------------------------------------------------------------------------- /indent_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/indent_test/README.md -------------------------------------------------------------------------------- /indent_test/run_indent_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/indent_test/run_indent_tests.py -------------------------------------------------------------------------------- /macros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/macros/README.md -------------------------------------------------------------------------------- /macros/comment_line.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/macros/comment_line.sublime-macro -------------------------------------------------------------------------------- /macros/xml_line_comment.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/macros/xml_line_comment.sublime-macro -------------------------------------------------------------------------------- /package_bootstrap/1_my_package/Context.sublime-menu.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/1_my_package/Context.sublime-menu.sublime-ignored -------------------------------------------------------------------------------- /package_bootstrap/1_my_package/Default.sublime-commands.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/1_my_package/Default.sublime-commands.sublime-ignored -------------------------------------------------------------------------------- /package_bootstrap/1_my_package/MyPackage.sublime-syntax.sublime-ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/1_my_package/MyPackage.sublime-syntax.sublime-ignored -------------------------------------------------------------------------------- /package_bootstrap/1_my_package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/1_my_package/README.md -------------------------------------------------------------------------------- /package_bootstrap/1_my_package/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/1_my_package/bootstrap.py -------------------------------------------------------------------------------- /package_bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/README.md -------------------------------------------------------------------------------- /package_bootstrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/__init__.py -------------------------------------------------------------------------------- /package_bootstrap/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/core/README.md -------------------------------------------------------------------------------- /package_bootstrap/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/core/__init__.py -------------------------------------------------------------------------------- /package_bootstrap/core/bootstrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/core/bootstrapper.py -------------------------------------------------------------------------------- /package_bootstrap/core/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/core/startup.py -------------------------------------------------------------------------------- /package_bootstrap/sublime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/sublime/README.md -------------------------------------------------------------------------------- /package_bootstrap/sublime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/sublime/__init__.py -------------------------------------------------------------------------------- /package_bootstrap/sublime/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/sublime/commands.py -------------------------------------------------------------------------------- /package_bootstrap/sublime/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/package_bootstrap/sublime/events.py -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/add_file_folder_to_sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/add_file_folder_to_sidebar.py -------------------------------------------------------------------------------- /plugins/clear_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/clear_console.py -------------------------------------------------------------------------------- /plugins/double_click.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/double_click.py -------------------------------------------------------------------------------- /plugins/eof_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/eof_context.py -------------------------------------------------------------------------------- /plugins/find_results_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/find_results_copy.py -------------------------------------------------------------------------------- /plugins/generate_cmd_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/generate_cmd_list.py -------------------------------------------------------------------------------- /plugins/insert_to_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/insert_to_column.py -------------------------------------------------------------------------------- /plugins/local_font_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/local_font_size.py -------------------------------------------------------------------------------- /plugins/log_toggler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/log_toggler.py -------------------------------------------------------------------------------- /plugins/menu_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/menu_exec.py -------------------------------------------------------------------------------- /plugins/minimap_toggler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/minimap_toggler.py -------------------------------------------------------------------------------- /plugins/move_amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/move_amount.py -------------------------------------------------------------------------------- /plugins/open_file_encoded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/open_file_encoded.py -------------------------------------------------------------------------------- /plugins/open_file_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/open_file_env.py -------------------------------------------------------------------------------- /plugins/open_found_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/open_found_files.py -------------------------------------------------------------------------------- /plugins/pattern_navigate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/pattern_navigate.py -------------------------------------------------------------------------------- /plugins/pipe_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/pipe_text.py -------------------------------------------------------------------------------- /plugins/project_in_statusbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/project_in_statusbar.py -------------------------------------------------------------------------------- /plugins/reversed_selection_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/reversed_selection_listener.py -------------------------------------------------------------------------------- /plugins/run_current_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/run_current_file.py -------------------------------------------------------------------------------- /plugins/scope_navigate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/scope_navigate.py -------------------------------------------------------------------------------- /plugins/scoped_snippet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/scoped_snippet.py -------------------------------------------------------------------------------- /plugins/selection_to_top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/selection_to_top.py -------------------------------------------------------------------------------- /plugins/selectionless_scroll_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/selectionless_scroll_lines.py -------------------------------------------------------------------------------- /plugins/set_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/set_status.py -------------------------------------------------------------------------------- /plugins/set_vc_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/set_vc_vars.py -------------------------------------------------------------------------------- /plugins/snippets_with_selections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/snippets_with_selections.py -------------------------------------------------------------------------------- /plugins/toggle_setting_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/toggle_setting_ext.py -------------------------------------------------------------------------------- /plugins/update_last_edited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/update_last_edited.py -------------------------------------------------------------------------------- /plugins/visible_multi_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/visible_multi_selection.py -------------------------------------------------------------------------------- /plugins/wrap_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/plugins/wrap_text.py -------------------------------------------------------------------------------- /quick_panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/quick_panel/README.md -------------------------------------------------------------------------------- /quick_panel/nested_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/quick_panel/nested_panel.py -------------------------------------------------------------------------------- /scratch_files/Default.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/scratch_files/Default.sublime-commands -------------------------------------------------------------------------------- /scratch_files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/scratch_files/README.md -------------------------------------------------------------------------------- /scratch_files/scratch_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/scratch_files/scratch_buffer.py -------------------------------------------------------------------------------- /session_cleaner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/session_cleaner/README.md -------------------------------------------------------------------------------- /session_cleaner/sublime_gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/session_cleaner/sublime_gui.sh -------------------------------------------------------------------------------- /session_cleaner/sublime_session_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/session_cleaner/sublime_session_clean.py -------------------------------------------------------------------------------- /snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/snippets/README.md -------------------------------------------------------------------------------- /snippets/keymap-context-entry.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/snippets/keymap-context-entry.sublime-snippet -------------------------------------------------------------------------------- /snippets/keymap-with-context.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/snippets/keymap-with-context.sublime-snippet -------------------------------------------------------------------------------- /snippets/keymap.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STealthy-and-haSTy/SublimeScraps/HEAD/snippets/keymap.sublime-snippet --------------------------------------------------------------------------------