-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.31 KB
/
package.json
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
{
"name": "ten-finger-typing-shortcuts",
"displayName": "ten-finger-typing-shortcuts",
"description": "on parmak klavyesi - ten finger typing extension",
"version": "0.0.1",
"icon": "keyboard.png",
"repository": "https://www.github.com/kaankarakoc42/ten-finger-typing",
"publisher": "mevltkaankarako",
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Keymaps"
],
"contributes": {
"keybindings": [
{
"key": "ctrl+.",
"command": "workbench.action.showCommands"
},
{
"key": "alt+i",
"command": "cursorUp",
"when": "textInputFocus"
},
{
"key": "alt+k",
"command": "cursorDown",
"when": "textInputFocus"
},
{
"key": "alt+j",
"command": "cursorLeft",
"when": "textInputFocus"
},
{
"key": "alt+l",
"command": "cursorRight",
"when": "textInputFocus"
},
{
"key": "alt+s",
"command": "workbench.action.files.save",
"when": "textInputFocus"
}
]
}
}