SublimeTextがSVNプラグインをインストールします



Sublime Text Installs Svn Plugin



環境設定->パッケージ設定-> TortoiseSVN->設定-ユーザー

{ // Auto close update dialog when no errors, conflicts and merges 'autoCloseUpdateDialog': false, // Auto close commit dialog when no errors, conflicts and merges 'autoCloseCommitDialog': false, 'tortoiseproc_path': 'D:\TortoiseSVN\bin\TortoiseProc.exe' //Your own TortoiseProc.exe path }

環境設定->パッケージ設定-> TortoiseSVN->キーバインディング-ユーザー



[ {'keys': ['ctrl+alt+space'], 'command': 'reindent' }, { 'keys': ['ctrl+l'], 'command': 'show_overlay', 'args': {'overlay': 'goto', 'text': ':'} }, { 'keys': ['alt+f3'], 'command': 'find_under_expand' }, { 'keys': ['ctrl+shift+r'], 'command': 'show_overlay', 'args': {'overlay': 'goto', 'show_files': true} }, { 'keys': ['alt+up'], 'command': 'swap_line_up' }, { 'keys': ['alt+down'], 'command': 'swap_line_down' }, { 'keys': ['ctrl+alt+down'], 'command': 'duplicate_line' }, { 'keys': ['ctrl+alt+k'], 'command': 'show_panel', 'args': {'panel': 'find_in_files'} }, { 'keys': ['ctrl+d'], 'command': 'run_macro_file', 'args': {'file': 'res://Packages/Default/Delete Line.sublime-macro'} }, { 'keys': ['alt+u'], 'command': 'svn_update' }, { 'keys': ['alt+c'], 'command': 'svn_commit' }, { 'keys': ['alt+r'], 'command': 'svn_revert' }, { 'keys': ['alt+l'], 'command': 'svn_log' }, { 'keys': ['alt+d'], 'command': 'svn_diff' } ]

習慣に合わせて設定できます

転載:https://www.cnblogs.com/tufujie/p/9416052.html