-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from peterk87/dev
Version 1.0.0 release for Sublime Text 4 and Nextflow DSL-2
- Loading branch information
Showing
42 changed files
with
1,244 additions
and
183 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
package-metadata.json | ||
*.swp | ||
.idea/ | ||
.ipynb_checkpoints/ | ||
*.ipynb | ||
*.pickle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ | ||
{"caption": "Nextflow: Fetch Biocontainers information", "command": "nextflow_biocontainer_info_fetch"}, | ||
{"caption": "Nextflow: Fetch Conda packages information", "command": "nextflow_conda_packages_info_fetch"} | ||
] |
Oops, something went wrong.