aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorKyle Minshall <kyleminshall@gmail.com>2024-08-08 08:35:07 -0700
committerGitHub <noreply@github.com>2024-08-08 15:35:07 +0000
commita8535b2329a082c7f4e0b11b91b1792770425eaa (patch)
treee0a407ae09c167f2e8c27b817c07c977d4df947b /lua
parentbot(lockfile): update hlsl, idl, nix, pascal, scala, sql, systemtap (diff)
downloadnvim-treesitter-a8535b2329a082c7f4e0b11b91b1792770425eaa.tar
nvim-treesitter-a8535b2329a082c7f4e0b11b91b1792770425eaa.tar.gz
nvim-treesitter-a8535b2329a082c7f4e0b11b91b1792770425eaa.tar.bz2
nvim-treesitter-a8535b2329a082c7f4e0b11b91b1792770425eaa.tar.lz
nvim-treesitter-a8535b2329a082c7f4e0b11b91b1792770425eaa.tar.xz
nvim-treesitter-a8535b2329a082c7f4e0b11b91b1792770425eaa.tar.zst
nvim-treesitter-a8535b2329a082c7f4e0b11b91b1792770425eaa.zip
fix(install): correct arguments for `string.format`
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/shell_command_selectors.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/shell_command_selectors.lua b/lua/nvim-treesitter/shell_command_selectors.lua
index a386226e3..89df8644b 100644
--- a/lua/nvim-treesitter/shell_command_selectors.lua
+++ b/lua/nvim-treesitter/shell_command_selectors.lua
@@ -307,6 +307,7 @@ function M.select_download_commands(repo, project_name, cache_folder, revision,
vim.api.nvim_err_writeln(
string.format(
"Cannot install %s with git in an active git session. Exit the session and run ':TSInstall %s' manually",
+ project_name,
project_name
)
)