-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
106 lines (106 loc) · 2.71 KB
/
coc-settings.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
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
{
"languageserver": {},
"coc.preferences.extensionUpdateCheck": "never",
"suggest.noselect": true,
"suggest.enablePreview": false,
"coc.preferences.formatOnSaveFiletypes": [
"json",
"php",
"html",
"python"
],
"json.format.enable": true,
"emmet.includeLanguages": {
"php": "php"
},
"explorer.keyMappings.global": {
"i": false,
"*": "toggleSelection",
"<tab>": "actionMenu",
"gk": "expandablePrev",
"gj": "expandableNext",
"h": "collapse",
"l": [
"expandable?",
"expand",
"open"
],
"J": [
"toggleSelection",
"normal:j"
],
"K": [
"toggleSelection",
"normal:k"
],
"gl": "expand:recursive",
"gh": "collapse:recursive",
"<2-LeftMouse>": [
"expandable?",
[
"expanded?",
"collapse",
"expand"
],
"open"
],
"o": [
"expanded?",
"collapse",
"expand"
],
"<cr>": [
"expandable?",
"cd",
"open"
],
"e": "open",
"s": "open:split",
"E": "open:vsplit",
"t": "open:tab",
"<bs>": "gotoParent",
"gs": "reveal:select",
"gp": "preview:labeling",
"y": "copyFilepath",
"Y": "copyFilename",
"c": "copyFile",
"x": "cutFile",
"p": "pasteFile",
"d": "delete",
"D": "deleteForever",
"a": "addFile",
"A": "addDirectory",
"r": "rename",
".": "toggleHidden",
"R": "refresh",
"?": "help",
"q": "quit",
"<esc>": "esc",
"X": "systemExecute",
"gd": "listDrive",
"f": "search",
"F": "searchRecursive",
"gf": "gotoSource:file",
"gb": "gotoSource:buffer",
"[[": "sourcePrev",
"]]": "sourceNext",
"[i": "indentPrev",
"]i": "indentNext",
"[m": "indexPrev:modified",
"]m": "indexPrev:modified",
"[d": "indexPrev:diagnosticError:diagnosticWarning",
"]d": "indexNext:diagnosticError:diagnosticWarning",
"[D": "indexPrev:diagnosticError",
"]D": "indexNext:diagnosticError",
"[c": "indexNext:git",
"]c": "indexNext:git",
"<<": "gitStage",
">>": "gitUnstage"
},
"explorer.position": "left",
"explorer.width": 28,
"explorer.icon.enableNerdfont": true,
"explorer.file.column.indent.indentLine": true,
"explorer.quitOnOpen": false,
"explorer.openAction.for.directory": "cd"
}