-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheditor_setup.txt
More file actions
196 lines (180 loc) · 7.71 KB
/
Copy patheditor_setup.txt
File metadata and controls
196 lines (180 loc) · 7.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
Zed Keymap
[
{
"context": "Workspace",
"bindings": {
"alt-s": null, //Not sure it's really doing anything
},
},
{
"context": "Editor && vim_mode == insert",
"bindings": {
// "j k": "vim::NormalBefore"
},
},
//Custom settings
{
"context": "Editor",
"bindings": {
"alt-s": null, //Not sure it's really doing anything
"alt-shift-i": "editor::SplitSelectionIntoLines",
"alt-shift-f": "editor::SelectToNextWordEnd",
"alt-shift-b": "editor::SelectToPreviousWordStart",
"alt-d": "editor::DuplicateLineDown",
"alt-shift-p": "editor::MoveLineUp",
"alt-shift-n": "editor::MoveLineDown",
// Switch focus to a diff pane
"cmd-k cmd-h": "workspace::ActivatePaneLeft",
"cmd-k cmd-j": "workspace::ActivatePaneDown",
"cmd-k cmd-k": "workspace::ActivatePaneUp",
"cmd-k cmd-l": "workspace::ActivatePaneRight",
// Move current pane in direction
"alt-s h": [
"workspace::MoveItemToPaneInDirection",
{ "direction": "left" },
],
"alt-s j": [
"workspace::MoveItemToPaneInDirection",
{ "direction": "down" },
],
"alt-s k": [
"workspace::MoveItemToPaneInDirection",
{ "direction": "up" },
],
"alt-s l": [
"workspace::MoveItemToPaneInDirection",
{ "direction": "right" },
],
},
},
{
"context": "Pane",
"bindings": {
"alt-s": null, //Not sure it's really doing anything
// Duplicate current pane in the selected direction
"alt-s alt-h": "pane::SplitLeft",
"alt-s alt-j": "pane::SplitDown",
"alt-s alt-k": "pane::SplitUp",
"alt-s alt-l": "pane::SplitRight",
},
},
{
"bindings": {
"ctrl-alt-e": "editor::ToggleFocus",
},
},
{
"context": "(Editor && mode == full)",
"bindings": {
"ctrl-alt-n": "editor::GoToNextChange",
"ctrl-alt-p": "editor::GoToPreviousChange",
},
},
]
Sublime
Theme - spark
bracket Highlighter
color highlighter
gitgutter
emmet
color picker
rsub
sftp
sublime-EasyMotion
Keybindings
#Mac
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["option+b"], "command": "move", "args": {"by": "subwords", "forward": false} },
{ "keys": ["option+f"], "command": "move", "args": {"by": "subword_ends", "forward": true} },
{ "keys": ["option+shift+b"], "command": "move", "args": {"by": "subwords", "forward": false, "extend": true} },
{ "keys": ["option+shift+f"], "command": "move", "args": {"by": "subword_ends", "forward": true, "extend": true} },
]
#Linux
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["alt+b"], "command": "move", "args": {"by": "subwords", "forward": false} },
{ "keys": ["alt+f"], "command": "move", "args": {"by": "subword_ends", "forward": true} }
{ "keys": ["alt+shift+b"], "command": "move", "args": {"by": "subwords", "forward": false, "extend": true} },
{ "keys": ["alt+shift+f"], "command": "move", "args": {"by": "subword_ends", "forward": true, "extend": true} }
]
Sub Snippet
<snippet>
<content><![CDATA[
console.log(${1});${0}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>log</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>
Atom
autocomplete-paths
easy-motion-redux
emmet
file-icons
minimap
pigments
remote-atom
script
spark-syntax
split-diff
Atom Keymappings
'atom-text-editor':
'alt-;': 'easy-motion-redux:letter' #'cmd-; for Mac'
#For ctrl-tab in order
'body':
'ctrl-tab ^ctrl': 'unset!'
'ctrl-tab': 'pane:show-next-item'
'ctrl-shift-tab ^ctrl': 'unset!'
'ctrl-shift-tab': 'pane:show-previous-item'
Visual Studio Code Keybindings
[
{ "key": "shift+ctrl+p", "command": "cursorUpSelect", "when": "editorTextFocus" },
{ "key": "shift+ctrl+n", "command": "cursorDownSelect", "when": "editorTextFocus" },
{ "key": "shift+ctrl+f", "command": "cursorRightSelect", "when": "editorTextFocus" },
{ "key": "shift+ctrl+b", "command": "cursorLeftSelect", "when": "editorTextFocus" },
{ "key": "alt+f", "command": "cursorWordEndRight", "when": "editorTextFocus" },
{ "key": "shift+alt+f", "command": "cursorWordEndRightSelect", "when": "editorTextFocus" },
{ "key": "alt+b", "command": "cursorWordStartLeft", "when": "editorTextFocus" },
{ "key": "shift+alt+b", "command": "cursorWordStartLeftSelect", "when": "editorTextFocus" },
{ "key": "shift+ctrl+a", "command": "cursorHomeSelect", "when": "editorTextFocus" },
{ "key": "shift+ctrl+e", "command": "cursorEndSelect", "when": "editorTextFocus" }
{ "key": "shift+ctrl+p", "command": "cursorUpSelect", "when": "editorTextFocus" },
{ "key": "shift+ctrl+n", "command": "cursorDownSelect", "when": "editorTextFocus" },
{ "key": "shift+ctrl+f", "command": "cursorRightSelect", "when": "editorTextFocus" },
{ "key": "shift+ctrl+b", "command": "cursorLeftSelect", "when": "editorTextFocus" },
{ "key": "alt+f", "command": "cursorWordEndRight", "when": "editorTextFocus" },
{ "key": "shift+alt+f", "command": "cursorWordEndRightSelect", "when": "editorTextFocus" },
{ "key": "alt+b", "command": "cursorWordStartLeft", "when": "editorTextFocus" },
{ "key": "shift+alt+b", "command": "cursorWordStartLeftSelect", "when": "editorTextFocus" },
{ "key": "shift+ctrl+a", "command": "cursorHomeSelect", "when": "editorTextFocus" },
{ "key": "shift+ctrl+e", "command": "cursorEndSelect", "when": "editorTextFocus" },
{ "key": "ctrl+alt+p", "command": "workbench.action.editor.previousChange", "when": "editorTextFocus" },
{ "key": "ctrl+alt+n", "command": "workbench.action.editor.nextChange", "when": "editorTextFocus" },
{ "key": "alt+s alt+j", "command": "workbench.action.splitEditorDown" },
{ "key": "alt+s alt+h", "command": "workbench.action.splitEditorLeft" },
{ "key": "alt+s alt+l", "command": "workbench.action.splitEditorRight" },
{ "key": "alt+s alt+k", "command": "workbench.action.splitEditorUp" },
{ "key": "ctrl+shift+alt+p", "command": "editor.action.dirtydiff.previous", "when": "editorTextFocus" },
{ "key": "ctrl+shift+alt+n", "command": "editor.action.dirtydiff.next", "when": "editorTextFocus" },
{ "key": "alt+cmd+b", "command": "editor.action.goToDeclaration", "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" },
{ "key": "cmd+k cmd+h", "command": "workbench.action.focusLeftGroup" },
{ "key": "cmd+k cmd+k", "command": "workbench.action.focusAboveGroup" },
{ "key": "cmd+k cmd+j", "command": "workbench.action.focusBelowGroup" },
{ "key": "cmd+k cmd+l", "command": "workbench.action.focusRightGroup" },
{ "key": "shift+alt+n", "command": "editor.action.moveLinesDownAction" },
{ "key": "shift+alt+p", "command": "editor.action.moveLinesUpAction" },
// move window to editor group
{ "key": "alt+s k", "command": "workbench.action.moveEditorToAboveGroup" },
{ "key": "alt+s j", "command": "workbench.action.moveEditorToBelowGroup" },
{ "key": "alt+s h", "command": "workbench.action.moveEditorToLeftGroup" },
{ "key": "alt+s l", "command": "workbench.action.moveEditorToRightGroup" },
{ "key": "ctrl+tab", "command": "workbench.action.quickOpenPreviousRecentlyUsedEditor", "when": "!inEditorsPicker" },
{ "key": "ctrl+shift+tab", "command": "workbench.action.quickOpenLeastRecentlyUsedEditor", "when": "!inEditorsPicker" },
{ "key": "alt+d", "command": "editor.action.copyLinesDownAction", "when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+alt+e", "command": "workbench.action.focusActiveEditorGroup" },
{ "key": "ctrl+alt+t", "command": "workbench.action.terminal.focus" }
]