aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Seitz <stephan.seitz@fau.de>2020-07-12 17:31:34 +0200
committerThomas Vigouroux <39092278+vigoux@users.noreply.github.com>2020-07-13 20:42:00 +0200
commit26cb05f2056834cff80f236370cd79d4fc503007 (patch)
tree811d6935a92e7fc7343a4ef0b2a97c7ab3ac3958
parentUpdate example (diff)
downloadnvim-treesitter-26cb05f2056834cff80f236370cd79d4fc503007.tar
nvim-treesitter-26cb05f2056834cff80f236370cd79d4fc503007.tar.gz
nvim-treesitter-26cb05f2056834cff80f236370cd79d4fc503007.tar.bz2
nvim-treesitter-26cb05f2056834cff80f236370cd79d4fc503007.tar.lz
nvim-treesitter-26cb05f2056834cff80f236370cd79d4fc503007.tar.xz
nvim-treesitter-26cb05f2056834cff80f236370cd79d4fc503007.tar.zst
nvim-treesitter-26cb05f2056834cff80f236370cd79d4fc503007.zip
Lint: remove second argument for one-argument function
-rw-r--r--lua/nvim-treesitter/install.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/install.lua b/lua/nvim-treesitter/install.lua
index f2972005c..4a957864e 100644
--- a/lua/nvim-treesitter/install.lua
+++ b/lua/nvim-treesitter/install.lua
@@ -112,7 +112,7 @@ local function run_install(cache_folder, package_path, lang, repo, with_sync)
}
if with_sync then
- if iter_cmd_sync(command_list, lang) == true then
+ if iter_cmd_sync(command_list) == true then
print('Treesitter parser for '..lang..' has been installed')
end
else