aboutsummaryrefslogtreecommitdiff
path: root/languages.toml
diff options
context:
space:
mode:
authorCor Peters2021-07-18 16:33:38 +0000
committerGitHub2021-07-18 16:33:38 +0000
commitcd65a48635d49ccc2aed55a315c3a33875e13f88 (patch)
tree0197d8f8fc68d29517e3ac564e4f9b2a2bf881b0 /languages.toml
parent0aa43902cab5dbcddb72ddf5d3b825ef874dc620 (diff)
Made toggle_comments language dependent (#463)
* Made toggle_comments language dependent * Fixed Test Cases * Added clippy suggestion * Small Fixes * Clippy Suggestion Co-authored-by: Cor <prive@corpeters.nl>
Diffstat (limited to 'languages.toml')
-rw-r--r--languages.toml12
1 files changed, 12 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml
index ee495635..05268ddd 100644
--- a/languages.toml
+++ b/languages.toml
@@ -5,6 +5,7 @@ injection-regex = "rust"
file-types = ["rs"]
roots = []
auto-format = true
+comment_token = "//"
config = """
{
"cargo": {
@@ -25,6 +26,7 @@ scope = "source.toml"
injection-regex = "toml"
file-types = ["toml"]
roots = []
+comment_token = "#"
indent = { tab-width = 2, unit = " " }
@@ -52,6 +54,7 @@ scope = "source.c"
injection-regex = "c"
file-types = ["c"] # TODO: ["h"]
roots = []
+comment_token = "//"
language-server = { command = "clangd" }
indent = { tab-width = 2, unit = " " }
@@ -62,6 +65,7 @@ scope = "source.cpp"
injection-regex = "cpp"
file-types = ["cc", "cpp", "hpp", "h"]
roots = []
+comment_token = "//"
language-server = { command = "clangd" }
indent = { tab-width = 2, unit = " " }
@@ -73,6 +77,7 @@ injection-regex = "go"
file-types = ["go"]
roots = ["Gopkg.toml", "go.mod"]
auto-format = true
+comment_token = "//"
language-server = { command = "gopls" }
# TODO: gopls needs utf-8 offsets?
@@ -84,6 +89,7 @@ scope = "source.js"
injection-regex = "^(js|javascript)$"
file-types = ["js"]
roots = []
+comment_token = "//"
# TODO: highlights-jsx, highlights-params
indent = { tab-width = 2, unit = " " }
@@ -123,6 +129,7 @@ scope = "source.python"
injection-regex = "python"
file-types = ["py"]
roots = []
+comment_token = "#"
language-server = { command = "pyls" }
# TODO: pyls needs utf-8 offsets
@@ -143,6 +150,7 @@ scope = "source.ruby"
injection-regex = "ruby"
file-types = ["rb"]
roots = []
+comment_token = "#"
language-server = { command = "solargraph", args = ["stdio"] }
indent = { tab-width = 2, unit = " " }
@@ -153,6 +161,7 @@ scope = "source.bash"
injection-regex = "bash"
file-types = ["sh", "bash"]
roots = []
+comment_token = "#"
language-server = { command = "bash-language-server", args = ["start"] }
indent = { tab-width = 2, unit = " " }
@@ -172,6 +181,7 @@ scope = "source.tex"
injection-regex = "tex"
file-types = ["tex"]
roots = []
+comment_token = "%"
indent = { tab-width = 4, unit = "\t" }
@@ -181,6 +191,7 @@ scope = "source.julia"
injection-regex = "julia"
file-types = ["jl"]
roots = []
+comment_token = "#"
language-server = { command = "julia", args = [ "--startup-file=no", "--history-file=no", "-e", "using LanguageServer;using Pkg;import StaticLint;import SymbolServer;env_path = dirname(Pkg.Types.Context().env.project_file);server = LanguageServer.LanguageServerInstance(stdin, stdout, env_path, \"\");server.runlinter = true;run(server);" ] }
indent = { tab-width = 2, unit = " " }
@@ -190,5 +201,6 @@ indent = { tab-width = 2, unit = " " }
# injection-regex = "haskell"
# file-types = ["hs"]
# roots = []
+# comment_token = "--"
#
# indent = { tab-width = 2, unit = " " }