-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault (Windows).sublime-keymap
More file actions
58 lines (48 loc) · 1.6 KB
/
Default (Windows).sublime-keymap
File metadata and controls
58 lines (48 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[
/** Edit */
//Line
{ "keys": ["ctrl+shift+-"], "command": "unindent" },
{ "keys": ["ctrl+shift+="], "command": "indent" },
//Code Folding
{ "keys": ["ctrl+k","ctrl+down"], "command": "unfold" },
{ "keys": ["alt+shift+a"], "command": "fold_tag_attributes" },
//Text
{ "keys": ["ctrl+shift+t"], "command": "transpose" },
// Selecionar linhas
{ "keys": ["ctrl+shift+,"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["ctrl+shift+."],"command": "select_lines", "args": {"forward": true} },
//Convert Case
{ "keys": ["ctrl+k", "ctrl+c"], "command": "title_case" },
{ "keys": ["ctrl+k", "ctrl+s"], "command": "swap_case" },
//Arquivos Abertos
{ "keys": ["ctrl+k", "ctrl+p"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
//Adicionar snippets
{ "keys": ["alt+d"], "command": "show_overlay", "args": {"overlay": "command_palette", "text": "Snippet: "} },
/*Goto*/
//Bookmark
{ "keys": ["ctrl+k", "ctrl+f2"], "command": "next_bookmark" },
/**Plugins*/
//Side Bar
{ "keys": ["ctrl+k", "ctrl+f"],
"command": "side_bar_open_in_browser" ,
"args":{"paths":[], "type":"testing"}
},
//BracketHighlighter
{
"keys": ["ctrl+k","ctrl+up"],
"command": "bh_key",
"args":
{
"plugin": {
"type": ["__all__"],
"command" : "bh_modules.foldbracket"
}
} // Fold contents between brackets
},
//Markdown Preview
{
"keys": ["ctrl+shift+m"],
"command": "markdown_preview",
"args": {"target": "browser", "parser":"github"}
}
]