Skip to content

Commit

Permalink
Merge pull request #3 from peterk87/dev
Browse files Browse the repository at this point in the history
Version 1.0.0 release for Sublime Text 4 and Nextflow DSL-2
  • Loading branch information
peterk87 authored Jun 30, 2021
2 parents 623d0ea + 990ac56 commit 52bd7de
Show file tree
Hide file tree
Showing 42 changed files with 1,244 additions and 183 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
package-metadata.json
*.swp
.idea/
.ipynb_checkpoints/
*.ipynb
*.pickle
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.8
33 changes: 33 additions & 0 deletions Default (Linux).sublime-keymap
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"
}
]
4 changes: 4 additions & 0 deletions Nextflow.sublime-commands
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"}
]
Loading

0 comments on commit 52bd7de

Please sign in to comment.