Skip to content

Commit 52bd7de

Browse files
authored
Merge pull request #3 from peterk87/dev
Version 1.0.0 release for Sublime Text 4 and Nextflow DSL-2
2 parents 623d0ea + 990ac56 commit 52bd7de

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1244
-183
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
package-metadata.json
22
*.swp
3+
.idea/
4+
.ipynb_checkpoints/
5+
*.ipynb
6+
*.pickle

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.8

Default (Linux).sublime-keymap

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*
2+
sublime-nextflow keymap for Linux
3+
*/
4+
[
5+
{
6+
"keys": ["ctrl+shift+g"],
7+
"command": "goto_definition"
8+
},
9+
{
10+
"keys": ["ctrl+l", "p"],
11+
"context": [
12+
{"key": "selector", "operator": "equal", "operand": "source.nextflow - (comment | meta)", "match_all": true},
13+
{"key": "selection_empty", "operator": "equal", "operand": true, "match_all": true}
14+
],
15+
"command": "nextflow_include_process"
16+
},
17+
{
18+
"keys": ["ctrl+l", "f"],
19+
"context": [
20+
{"key": "selector", "operator": "equal", "operand": "source.nextflow - (comment | meta)", "match_all": true},
21+
{"key": "selection_empty", "operator": "equal", "operand": true, "match_all": true}
22+
],
23+
"command": "nextflow_include_functions"
24+
},
25+
{
26+
"keys": ["ctrl+l", "c"],
27+
"context": [
28+
{"key": "selector", "operator": "equal", "operand": "(source.nextflow meta.definition.process.nextflow) - (comment)", "match_all": true},
29+
{"key": "selection_empty", "operator": "equal", "operand": true, "match_all": true}
30+
],
31+
"command": "nextflow_biocontainer_select"
32+
}
33+
]

Nextflow.sublime-commands

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[
2+
{"caption": "Nextflow: Fetch Biocontainers information", "command": "nextflow_biocontainer_info_fetch"},
3+
{"caption": "Nextflow: Fetch Conda packages information", "command": "nextflow_conda_packages_info_fetch"}
4+
]

0 commit comments

Comments
 (0)