diff options
author | Karel Kočí <cynerd@email.cz> | 2024-04-09 09:51:21 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2024-04-09 09:51:21 +0200 |
commit | f4fa02469356088a1d7934bf1f3c7bcd83101a73 (patch) | |
tree | d9957dbe963bbbcda689354b8e0b09197a3ea310 /config/nvim/lua/mytelescopefiles.lua | |
parent | b2829b94d7b50e0398ab9e2bea4f8b6429ac2800 (diff) | |
download | myconfigs-f4fa02469356088a1d7934bf1f3c7bcd83101a73.tar.gz myconfigs-f4fa02469356088a1d7934bf1f3c7bcd83101a73.tar.bz2 myconfigs-f4fa02469356088a1d7934bf1f3c7bcd83101a73.zip |
nvim/telescope: simplify git command
Diffstat (limited to 'config/nvim/lua/mytelescopefiles.lua')
-rw-r--r-- | config/nvim/lua/mytelescopefiles.lua | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/config/nvim/lua/mytelescopefiles.lua b/config/nvim/lua/mytelescopefiles.lua index 46253eb..733a1d8 100644 --- a/config/nvim/lua/mytelescopefiles.lua +++ b/config/nvim/lua/mytelescopefiles.lua @@ -5,14 +5,11 @@ return function() local root, ret = utils.get_os_command_output({ "git", "rev-parse", "--show-toplevel" }, vim.fn.expand("%:h")) if ret == 0 then ts.git_files({ + cwd = root[1], git_command = { "sh", "-c", - "git -C " - .. root[1] - .. " ls-files -c --recurse-submodules && git -C " - .. root[1] - .. " ls-files -o --exclude-standard", + "git ls-files -c --recurse-submodules && git ls-files -o --exclude-standard", }, }) else |