Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,6 @@
[submodule "vendor/grammars/atom-language-julia"]
path = vendor/grammars/atom-language-julia
url = https://github.com/JuliaEditorSupport/atom-language-julia
[submodule "vendor/grammars/atom-language-nextflow"]
path = vendor/grammars/atom-language-nextflow
url = https://github.com/nextflow-io/atom-language-nextflow
[submodule "vendor/grammars/atom-language-p4"]
path = vendor/grammars/atom-language-p4
url = https://github.com/TakeshiTseng/atom-language-p4
Expand Down Expand Up @@ -1413,6 +1410,9 @@
[submodule "vendor/grammars/vscode-kolmafia-ash"]
path = vendor/grammars/vscode-kolmafia-ash
url = https://github.com/midgleyc/vscode-kolmafia-ash
[submodule "vendor/grammars/vscode-language-nextflow"]
path = vendor/grammars/vscode-language-nextflow
url = https://github.com/nextflow-io/vscode-language-nextflow.git
[submodule "vendor/grammars/vscode-lean"]
path = vendor/grammars/vscode-lean
url = https://github.com/leanprover/vscode-lean
Expand Down
6 changes: 3 additions & 3 deletions grammars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,6 @@ vendor/grammars/atom-language-innosetup:
vendor/grammars/atom-language-julia:
- source.julia
- source.julia.console
vendor/grammars/atom-language-nextflow:
- source.nextflow
- source.nextflow-groovy
vendor/grammars/atom-language-p4:
- source.p4
vendor/grammars/atom-language-perl6:
Expand Down Expand Up @@ -1260,6 +1257,9 @@ vendor/grammars/vscode-kdl:
- source.kdl
vendor/grammars/vscode-kolmafia-ash:
- source.ash
vendor/grammars/vscode-language-nextflow:
- source.nextflow
- source.nextflow-config
vendor/grammars/vscode-lean:
- markdown.lean.codeblock
- source.lean
Expand Down
2 changes: 1 addition & 1 deletion lib/linguist/languages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4943,7 +4943,7 @@ Nextflow:
type: programming
ace_mode: groovy
tm_scope: source.nextflow
color: "#3ac486"
color: "#0DC09D"
extensions:
- ".nf"
filenames:
Expand Down
2 changes: 1 addition & 1 deletion vendor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ This is a list of grammars that Linguist selects to provide syntax highlighting
- **NetLinx+ERB:** [amclain/sublime-netlinx](https://github.com/amclain/sublime-netlinx)
- **NetLogo:** [textmate/lisp.tmbundle](https://github.com/textmate/lisp.tmbundle)
- **NewLisp:** [textmate/lisp.tmbundle](https://github.com/textmate/lisp.tmbundle)
- **Nextflow:** [nextflow-io/atom-language-nextflow](https://github.com/nextflow-io/atom-language-nextflow)
- **Nextflow:** [nextflow-io/vscode-language-nextflow](https://github.com/nextflow-io/vscode-language-nextflow)
- **Nginx:** [william-voyek/vscode-nginx](https://github.com/william-voyek/vscode-nginx)
- **Nickel:** [tweag/nickel](https://github.com/tweag/nickel)
- **Nim:** [nim-lang/NimLime](https://github.com/nim-lang/NimLime)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
---
type: git_submodule
name: atom-language-nextflow
version: 40387695d768dc7c9ab7b8594cd2c925fd254e47
name: vscode-language-nextflow
version: 13d3a2067eef8117cdea3e880d7f2bbde8c017a0
license: mit
licenses:
- text: |-
Copyright (c) 2018 Paolo Di Tommaso
Copyright (c) 2014-2017 Jakehp https://github.com/Jakehp/language-groovy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading