telescope-z
is an extension for telescope.nvim that provides its users with operating rupa/z or its compatibles.
{
"nvim-telescope/telescope-z.nvim",
config = function()
require("telescope").load_extension "z"
end,
}
paq "nvim-telescope/telescope-z.nvim"
require("telescope").load_extension "z"
:Telescope z
Or Lua way
require("telescope").extensions.z.z {}
List directories by z -l
. In default, it does actions below when you input keys.
key | action |
---|---|
<CR> (edit) |
builtin.find_files |
<C-x> (split) |
:chdir to the dir |
<C-v> (vsplit) |
:lchdir to the dir |
<C-t> (tabedit) |
:tchdir to the dir |
Set command list to execute z -l
or compatibles. In default, it does bash -c 'z -l'
or so.
Default value: { vim.o.shell, "-c", "z -l" }
Transform the result paths into relative ones with this value as the base dir.
Default value: vim.uv.cwd()
This is deprecated. Use path_display
(:h telescope.defaults.path_display
).
Show only basename of the path.
Default value: false
This is deprecated. Use path_display
(:h telescope.defaults.path_display
).
Call pathshorten()
for each path.
Default value: false