-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
64 lines (63 loc) · 1.57 KB
/
Default.sublime-commands
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
59
60
61
62
63
64
[
// Command palette commands for already existing ones.
{
"caption": "Preferences: Command Palette - Default",
"command": "open_file",
"args": {
"file": "${packages}/Default/Default.sublime-commands"
}
},
{
"caption": "Preferences: Command Palette - User",
"command": "open_file",
"args": {
"file": "${packages}/User/Default.sublime-commands"
}
},
// Commands implemented by PowerLime.
{
"caption": "Python: Sort Imports",
"command": "sort_python_imports"
},
{
"caption": "Python: Add Import",
"command": "add_python_import"
},
{
"caption": "Haskell: Hoogle Search",
"command": "hoogle"
},
{
"caption": "C/C++: Sort Includes",
"command": "sort_includes"
},
{
"caption": "Copy Current File Path (Relative)",
"command": "copy_current_path"
},
{
"caption": "Copy Current File Path (Absolute)",
"command": "copy_current_path",
"args": {
"relative": false
}
},
{
"caption": "Goto Parent Block",
"command": "goto_block",
"args": {
"mode": "parent"
}
},
{
"caption": "Code Folding: Fold All Comments",
"command": "fold_by_selector",
"args": {
"selector": "comment, string.quoted.single.block.python, string.quoted.double.block.python"
}
},
{
"caption": "File: Fork View",
"command": "fork_view"
}
]