diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2020-07-12 17:31:34 +0200 |
|---|---|---|
| committer | Thomas Vigouroux <39092278+vigoux@users.noreply.github.com> | 2020-07-13 20:42:00 +0200 |
| commit | 26cb05f2056834cff80f236370cd79d4fc503007 (patch) | |
| tree | 811d6935a92e7fc7343a4ef0b2a97c7ab3ac3958 /lua/nvim-treesitter | |
| parent | 366e8b43bfe508ffaab2a905135a7c5c5a88fb06 (diff) | |
Lint: remove second argument for one-argument function
Diffstat (limited to 'lua/nvim-treesitter')
| -rw-r--r-- | lua/nvim-treesitter/install.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/install.lua b/lua/nvim-treesitter/install.lua index f2972005..4a957864 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 |
