My sublimetext change the key
[
/**
* My keys are changed
*/
F1 control Center; F2 Quick find; F3 Find Next;
{"Keys": ["F1"], "command": "Show_overlay", "args": {"overlay": "Command_palette"}},
{"Keys": ["F2"], "command": "Show_overlay", "args": {"overlay": "goto", "Text": "#"}},
{"Keys": ["F2"], "command": "Show_overlay", "args": {"overlay": "Goto", "Show_files": true}},
{"Keys": ["F3"], "command": "Find_next"},
F4 single-line comment; F5 block comment;
{"Keys": ["F4"], "command": "Toggle_comment", "args": {"block": false}},
{"Keys": ["F5"], "command": "Toggle_comment", "args": {"block": true}},
Ctrl+d repeats one row (block); ctrl+e deletes rows;
{"Keys": ["Ctrl+d"], "command": "Duplicate_line"},
{"Keys": ["Ctrl+e"], "command": "Run_macro_file", "args": {"file": "Res://packages/default/delete Line.sublime-macro" } },
Alt+d down Check Repeat
{"Keys": ["Alt+d"], "command": "Find_under_expand"},
Ctrl+b Open File Sidebar
{"Keys": ["Ctrl+b"], "command": "Toggle_side_bar"},
Alt+v Open the Clipboard
{"Keys": ["Alt+v"], "command": "Paste_from_history"},
ALT+Q Toggle tab. ALT + Number Toggle position Note
{"Keys": ["Alt+q"], "command": "Next_view_in_stack"},
ALT + left mouse button to jump to method
{"Keys": ["F12"], "command": "Goto_definition"},
CTRL + ' Emmet Quick edit HTML
{
"Keys": [
"Ctrl + '"
],
"Args": {
"Action": "Expand_abbreviation"
},
"Command": "Run_emmet_action",
"Context": [
{
"Key": "Emmet_action_enabled.expand_abbreviation"
}
]
},
ALT+1/2 split Screen Display
{
"Keys": ["alt+1"],
"Command": "Set_layout",
"Args":
{
"Cols": [0.0, 1.0],
"Rows": [0.0, 1.0],
"Cells": [[0, 0, 1, 1]]
}
},
{
"Keys": ["alt+2"],
"Command": "Set_layout",
"Args":
{
"Cols": [0.0, 0.5, 1.0],
"Rows": [0.0, 1.0],
"Cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
ALT+3/4 Switch Labels Around
{"Keys": ["alt+3"], "command": "Prev_view"},
{"Keys": ["alt+4"], "command": "Next_view"},
ALT + left mouse button to jump to method
{
"button": "Button1",
"Count": 1,
"Press_command": "Goto_definition",
"Modifiers": ["Alt"],
"Command": "Goto_definition"
},
]
My Sublimetext configuration
{
"Always_show_minimap_viewport": true,
"Auto_complete_triggers":
[
{
"Characters": "",
"Selector": "Text.html"
}
],
"Color_scheme": "Packages/user/wwlstyle.tmtheme",
"Default_line_ending": "Unix",
"Font_size": 15,
"Highlight_line": true,
"Highlight_modified_tabs": true,
"Ignored_packages":
[
"Gosublime",
"Git",
"Brackethighlighter",
"Vintage"
],
"Line_padding_bottom": 1,
"Line_padding_top": 1,
"Open_files_in_new_window": false,
"Soda_classic_tabs": true,
"Soda_folder_icons": true,
"Tab_size": 4,
"Translate_tabs_to_spaces": true,
"Update_check": false,
"Word_wrap": True
}
My Sublimetext configuration