├── .gitignore ├── Add Line Before.sublime-macro ├── Add Line in Braces.sublime-macro ├── Add Line.sublime-macro ├── Context.sublime-menu ├── Default (Linux).sublime-keymap ├── Default (Linux).sublime-mousemap ├── Default (OSX).sublime-keymap ├── Default (OSX).sublime-mousemap ├── Default (Windows).sublime-keymap ├── Default (Windows).sublime-mousemap ├── Default.sublime-commands ├── Delete Left Right.sublime-macro ├── Delete Line.sublime-macro ├── Delete to BOL.sublime-macro ├── Delete to EOL.sublime-macro ├── Delete to Hard BOL.sublime-macro ├── Delete to Hard EOL.sublime-macro ├── Distraction Free.sublime-settings ├── Encoding.sublime-menu ├── Find Results.hidden-tmLanguage ├── Find in Files.sublime-menu ├── Icon (Markup).tmPreferences ├── Icon (Source).tmPreferences ├── Icon (Text).tmPreferences ├── Icon.png ├── Indentation Rules - Comments.tmPreferences ├── Indentation Rules.tmPreferences ├── Indentation.sublime-menu ├── Indexed Symbol List.tmPreferences ├── Line Endings.sublime-menu ├── Main.sublime-menu ├── Minimap.sublime-settings ├── Preferences (Linux).sublime-settings ├── Preferences (OSX).sublime-settings ├── Preferences (Windows).sublime-settings ├── Preferences.sublime-settings ├── README.md ├── Regex Format Widget.sublime-settings ├── Regex Widget.sublime-settings ├── Side Bar Mount Point.sublime-menu ├── Side Bar.sublime-menu ├── Symbol List.tmPreferences ├── Syntax Tests.sublime-build ├── Syntax.sublime-menu ├── Tab Context.sublime-menu ├── Widget Context.sublime-menu ├── Widget.sublime-settings ├── auto_indent_tag.py ├── block.py ├── comment.py ├── convert_syntax.py ├── copy_path.py ├── delete_word.py ├── detect_indentation.py ├── duplicate_line.py ├── echo.py ├── exec.py ├── fold.py ├── font.py ├── goto_line.py ├── history_list.py ├── indentation.py ├── kill_ring.py ├── mark.py ├── new_templates.py ├── open_context_url.py ├── open_file_settings.py ├── open_in_browser.py ├── pane.py ├── paragraph.py ├── paste_from_history.py ├── profile.py ├── quick_panel.py ├── run_syntax_tests.py ├── save_on_focus_lost.py ├── scroll.py ├── send2trash ├── __init__.py ├── plat_osx.py ├── plat_other.py └── plat_win.py ├── set_unsaved_view_name.py ├── show_scope_name.py ├── side_bar.py ├── sort.py ├── swap_line.py ├── switch_file.py ├── symbol.py ├── transform.py ├── transpose.py └── trim_trailing_white_space.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .pyc 3 | .cache 4 | .sublime-project 5 | !.gitkeep 6 | -------------------------------------------------------------------------------- /Add Line Before.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Add Line Before.sublime-macro -------------------------------------------------------------------------------- /Add Line in Braces.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Add Line in Braces.sublime-macro -------------------------------------------------------------------------------- /Add Line.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Add Line.sublime-macro -------------------------------------------------------------------------------- /Context.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Context.sublime-menu -------------------------------------------------------------------------------- /Default (Linux).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Default (Linux).sublime-keymap -------------------------------------------------------------------------------- /Default (Linux).sublime-mousemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Default (Linux).sublime-mousemap -------------------------------------------------------------------------------- /Default (OSX).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Default (OSX).sublime-keymap -------------------------------------------------------------------------------- /Default (OSX).sublime-mousemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Default (OSX).sublime-mousemap -------------------------------------------------------------------------------- /Default (Windows).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Default (Windows).sublime-keymap -------------------------------------------------------------------------------- /Default (Windows).sublime-mousemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Default (Windows).sublime-mousemap -------------------------------------------------------------------------------- /Default.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Default.sublime-commands -------------------------------------------------------------------------------- /Delete Left Right.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Delete Left Right.sublime-macro -------------------------------------------------------------------------------- /Delete Line.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Delete Line.sublime-macro -------------------------------------------------------------------------------- /Delete to BOL.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Delete to BOL.sublime-macro -------------------------------------------------------------------------------- /Delete to EOL.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Delete to EOL.sublime-macro -------------------------------------------------------------------------------- /Delete to Hard BOL.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Delete to Hard BOL.sublime-macro -------------------------------------------------------------------------------- /Delete to Hard EOL.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Delete to Hard EOL.sublime-macro -------------------------------------------------------------------------------- /Distraction Free.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Distraction Free.sublime-settings -------------------------------------------------------------------------------- /Encoding.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Encoding.sublime-menu -------------------------------------------------------------------------------- /Find Results.hidden-tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Find Results.hidden-tmLanguage -------------------------------------------------------------------------------- /Find in Files.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Find in Files.sublime-menu -------------------------------------------------------------------------------- /Icon (Markup).tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Icon (Markup).tmPreferences -------------------------------------------------------------------------------- /Icon (Source).tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Icon (Source).tmPreferences -------------------------------------------------------------------------------- /Icon (Text).tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Icon (Text).tmPreferences -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Icon.png -------------------------------------------------------------------------------- /Indentation Rules - Comments.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Indentation Rules - Comments.tmPreferences -------------------------------------------------------------------------------- /Indentation Rules.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Indentation Rules.tmPreferences -------------------------------------------------------------------------------- /Indentation.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Indentation.sublime-menu -------------------------------------------------------------------------------- /Indexed Symbol List.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Indexed Symbol List.tmPreferences -------------------------------------------------------------------------------- /Line Endings.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Line Endings.sublime-menu -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Main.sublime-menu -------------------------------------------------------------------------------- /Minimap.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Minimap.sublime-settings -------------------------------------------------------------------------------- /Preferences (Linux).sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Preferences (Linux).sublime-settings -------------------------------------------------------------------------------- /Preferences (OSX).sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Preferences (OSX).sublime-settings -------------------------------------------------------------------------------- /Preferences (Windows).sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Preferences (Windows).sublime-settings -------------------------------------------------------------------------------- /Preferences.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Preferences.sublime-settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/README.md -------------------------------------------------------------------------------- /Regex Format Widget.sublime-settings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Regex Widget.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Regex Widget.sublime-settings -------------------------------------------------------------------------------- /Side Bar Mount Point.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Side Bar Mount Point.sublime-menu -------------------------------------------------------------------------------- /Side Bar.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Side Bar.sublime-menu -------------------------------------------------------------------------------- /Symbol List.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Symbol List.tmPreferences -------------------------------------------------------------------------------- /Syntax Tests.sublime-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Syntax Tests.sublime-build -------------------------------------------------------------------------------- /Syntax.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Syntax.sublime-menu -------------------------------------------------------------------------------- /Tab Context.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Tab Context.sublime-menu -------------------------------------------------------------------------------- /Widget Context.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Widget Context.sublime-menu -------------------------------------------------------------------------------- /Widget.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/Widget.sublime-settings -------------------------------------------------------------------------------- /auto_indent_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/auto_indent_tag.py -------------------------------------------------------------------------------- /block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/block.py -------------------------------------------------------------------------------- /comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/comment.py -------------------------------------------------------------------------------- /convert_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/convert_syntax.py -------------------------------------------------------------------------------- /copy_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/copy_path.py -------------------------------------------------------------------------------- /delete_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/delete_word.py -------------------------------------------------------------------------------- /detect_indentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/detect_indentation.py -------------------------------------------------------------------------------- /duplicate_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/duplicate_line.py -------------------------------------------------------------------------------- /echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/echo.py -------------------------------------------------------------------------------- /exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/exec.py -------------------------------------------------------------------------------- /fold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/fold.py -------------------------------------------------------------------------------- /font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/font.py -------------------------------------------------------------------------------- /goto_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/goto_line.py -------------------------------------------------------------------------------- /history_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/history_list.py -------------------------------------------------------------------------------- /indentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/indentation.py -------------------------------------------------------------------------------- /kill_ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/kill_ring.py -------------------------------------------------------------------------------- /mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/mark.py -------------------------------------------------------------------------------- /new_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/new_templates.py -------------------------------------------------------------------------------- /open_context_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/open_context_url.py -------------------------------------------------------------------------------- /open_file_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/open_file_settings.py -------------------------------------------------------------------------------- /open_in_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/open_in_browser.py -------------------------------------------------------------------------------- /pane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/pane.py -------------------------------------------------------------------------------- /paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/paragraph.py -------------------------------------------------------------------------------- /paste_from_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/paste_from_history.py -------------------------------------------------------------------------------- /profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/profile.py -------------------------------------------------------------------------------- /quick_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/quick_panel.py -------------------------------------------------------------------------------- /run_syntax_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/run_syntax_tests.py -------------------------------------------------------------------------------- /save_on_focus_lost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/save_on_focus_lost.py -------------------------------------------------------------------------------- /scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/scroll.py -------------------------------------------------------------------------------- /send2trash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/send2trash/__init__.py -------------------------------------------------------------------------------- /send2trash/plat_osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/send2trash/plat_osx.py -------------------------------------------------------------------------------- /send2trash/plat_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/send2trash/plat_other.py -------------------------------------------------------------------------------- /send2trash/plat_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/send2trash/plat_win.py -------------------------------------------------------------------------------- /set_unsaved_view_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/set_unsaved_view_name.py -------------------------------------------------------------------------------- /show_scope_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/show_scope_name.py -------------------------------------------------------------------------------- /side_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/side_bar.py -------------------------------------------------------------------------------- /sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/sort.py -------------------------------------------------------------------------------- /swap_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/swap_line.py -------------------------------------------------------------------------------- /switch_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/switch_file.py -------------------------------------------------------------------------------- /symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/symbol.py -------------------------------------------------------------------------------- /transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/transform.py -------------------------------------------------------------------------------- /transpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/transpose.py -------------------------------------------------------------------------------- /trim_trailing_white_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9abc/st3-zh_CN/HEAD/trim_trailing_white_space.py --------------------------------------------------------------------------------