mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-06 05:20:00 -04:00
refactor: nitpicking
This commit is contained in:
parent
aaf157a6a9
commit
f6dcbe66b0
3 changed files with 3 additions and 3 deletions
|
|
@ -368,7 +368,7 @@ function M.setup(user_data)
|
|||
local ensure_installed = user_data.ensure_installed or {}
|
||||
if #ensure_installed > 0 then
|
||||
if user_data.sync_install then
|
||||
require("nvim-treesitter.install").ensure_sync_installed(ensure_installed)
|
||||
require("nvim-treesitter.install").ensure_installed_sync(ensure_installed)
|
||||
else
|
||||
require("nvim-treesitter.install").ensure_installed(ensure_installed)
|
||||
end
|
||||
|
|
|
|||
|
|
@ -521,7 +521,7 @@ function M.write_lockfile(verbose, skip_langs)
|
|||
end
|
||||
|
||||
M.ensure_installed = install { exclude_configured_parsers = true }
|
||||
M.ensure_sync_installed = install { with_sync = true, exclude_configured_parsers = true }
|
||||
M.ensure_installed_sync = install { with_sync = true, exclude_configured_parsers = true }
|
||||
|
||||
M.commands = {
|
||||
TSInstall = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue