-
Notifications
You must be signed in to change notification settings - Fork 5
/
Default (Linux).sublime-keymap
33 lines (33 loc) · 1.05 KB
/
Default (Linux).sublime-keymap
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
/*
sublime-nextflow keymap for Linux
*/
[
{
"keys": ["ctrl+shift+g"],
"command": "goto_definition"
},
{
"keys": ["ctrl+l", "p"],
"context": [
{"key": "selector", "operator": "equal", "operand": "source.nextflow - (comment | meta)", "match_all": true},
{"key": "selection_empty", "operator": "equal", "operand": true, "match_all": true}
],
"command": "nextflow_include_process"
},
{
"keys": ["ctrl+l", "f"],
"context": [
{"key": "selector", "operator": "equal", "operand": "source.nextflow - (comment | meta)", "match_all": true},
{"key": "selection_empty", "operator": "equal", "operand": true, "match_all": true}
],
"command": "nextflow_include_functions"
},
{
"keys": ["ctrl+l", "c"],
"context": [
{"key": "selector", "operator": "equal", "operand": "(source.nextflow meta.definition.process.nextflow) - (comment)", "match_all": true},
{"key": "selection_empty", "operator": "equal", "operand": true, "match_all": true}
],
"command": "nextflow_biocontainer_select"
}
]