addictionwhite’s diary

考え中のことを整理と忘備録のために綴ります。ここに書かれている考えは翌日には変わる可能性があります

Sublime text3 設定メモ

Sublime textの設定メモ
GitHubDropBoxなどの共有方法があるのだけど今回はあえて使用しない) もうすこし綺麗にまとめたいが、暫定

 

    
	"installed_packages":
	[
		"Alignment",
		"All Autocomplete",
		"BetterFindBuffer",
		"Block Cursor Everywhere",
		"BoundKeys",
		"BracketHighlighter",
		"Codecs33",
		"CodeFormatter",
		"Color Highlighter",
		"Colorsublime",
		"ConvertToUTF8",
		"CSS Snippets",
		"CSV",
		"CTags",
		"DataConverter",
		"EasyMotion",
		"EditorConfig",
		"Emmet",
		"FindKeyConflicts",
		"FuzzyFileNav",
		"Git",
		"GitGutter",
		"GotoDocumentation",
		"HTML5",
		"jQuery",
		"JS Snippets",
		"MarkdownEditing",
		"MoveTab",
		"OmniMarkupPreviewer",
		"Package Control",
		"PHP Syntax Checker",
		"Phpcs",
		"Pretty JSON",
		"RecentActiveFiles",
		"Resize Group with Keyboard",
		"SideBarEnhancements",
		"Sublime Bookmarks",
		"Sublime Files",
		"SublimeLinter-php",
		"SublimeLinter-phpcs",
		"SublimeLinter-phplint",
		"SublimeLinter-phpmd",
		"Tag",
		"termX",
		"Theme - Coffee",
		"Theme - DC",
		"Theme - Farzher",
		"Theme - Glacier",
		"Theme - Hero",
		"Theme - Phoenix",
		"Theme - Tech49",
		"Theme - Watson",
		"TrailingSpaces",
		"VIM Navigation",
		"Vintage Numbers",
		"VintageES",
		"VintageLines",
		"Vintageous",
		"Vintageous - Region To Selection",
		"Xdebug Client"
	]
	
	
    

■Key Binding
[ { "keys": ["ctrl+tab"], "command": "next_view" }, { "keys": ["ctrl+shift+tab"], "command": "prev_view" }, { "keys": ["ctrl+pagedown"], "command": "next_view_in_stack" }, { "keys": ["ctrl+pageup"], "command": "prev_view_in_stack" }, // サイドバーをhjklで操作する { "keys": ["j"], "command": "move", "args": {"by": "lines", "forward": true}, "context": [ {"key": "control", "operand": "sidebar_tree"} ]}, { "keys": ["k"], "command": "move", "args": {"by": "lines", "forward": false}, "context":[ {"key": "control", "operand": "sidebar_tree"} ]}, { "keys": ["l"], "command": "move", "args": {"by": "characters", "forward": true}, "context":[ {"key": "control", "operand": "sidebar_tree"} ]}, { "keys": ["h"], "command": "move", "args": {"by": "characters", "forward": false}, "context":[ {"key": "control", "operand": "sidebar_tree"} ]}, { "keys": ["j","j"], "command": "exit_insert_mode", "context": [ { "key": "setting.command_mode", "operand": false }, { "key": "setting.is_widget", "operand": false } ] }, // http://qiita.com/noanoa07/items/3a32ab2bc22da5ddb8be // 関数の宣言元にジャンプ { "keys": ["command+m"], "command": "goto_definition" }, // 戻る(厳密には関数でなくとも元の位置に戻る) { "keys": ["command+shift+m"], "command": "jump_back" }, // alt+右で戻ったのをまた進める // { "keys": ["alt+right"], "command": "jump_forward" }, // (新規ファイル作成)何かのプラグインに上書きされたっぽいので { "keys": ["super+n"], "command": "new_file" }, // 置換 { "keys": ["super+r"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} }, { "keys": ["ctrl+r"], "command": "replace_next" }, { "keys": ["command+1"], "command": "show_panel", "args": {"panel": "console", "toggle": true} }, // com-3,4でカレントファイルのグループ入れ替え { "keys": ["command+3"], "command": "move_to_group", "args": { "group": 1 } }, { "keys": ["command+4"], "command": "move_to_group", "args": { "group": 0 } }, { "keys": ["ctrl+w", "w"], "command": "next_view", "context": [ { "key": "setting.is_widget", "operand": false }, { "key": "setting.command_mode" } ] }, // TODO 機能しない // { "keys": ["ctrl+w", "h"], "command": "focus_group", "args": { "group": 0 } }, // { "keys": ["ctrl+w", "l"], "command": "focus_group", "args": { "group": 1 } }, ] ■Setting User { "always_show_minimap_viewport": false, "auto_complete": true, "auto_complete_commit_on_tab": false, "auto_complete_delay": 700, "auto_complete_size_limit": 4194304, "auto_indent": true, "auto_match_enabled": true, "bold_folder_labels": true, "caret_style": "phase", "color_scheme": "Packages/Colorsublime-Themes/Monokai-Dev.tmTheme", "detect_indentation": true, "disable_formatted_linebreak": true, "draw_indent_guides": true, "draw_white_space": "all", "ensure_newline_at_eof_on_save": false, "fade_fold_buttons": false, "fallback_encoding": "UTF-8", "find_selected_text": true, "fold_buttons": false, "highlight_line": true, "highlight_modified_tabs": true, "ignored_packages": [ "Markdown", "PlainTasks" ], "indent_guide_options": [ "draw_active" ], "margin": 0, "match_brackets": true, "match_brackets_angle": true, "match_brackets_braces": true, "match_brackets_content": true, "match_brackets_square": true, "match_selection": true, "match_tags": true, "phoenix_color_blue": true, "phoenix_highlight_current_tab": true, "shift_tab_unindent": true, "show_encoding": true, "show_full_path": true, "show_line_endings": true, "show_tab_close_buttons": true, "smart_indent": true, "tab_completion": true, "tab_size": 4, "theme": "Adaptive.sublime-theme", "translate_tabs_to_spaces": true, "vintage_start_in_command_mode": true, "vintageous_use_ctrl_keys": true, "word_wrap": false } v