mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
fix(project): properly close window after changing directory (#3919)
## What is this PR for? In project extra, when using `<c-w>` in the project selection menu to change directory, the window used to show the command's exit code would not close. This fixes it. ## Does this PR fix an existing issue? N/A. ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines.
This commit is contained in:
parent
fb59a9feb0
commit
51e99dfba1
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ pick = function()
|
||||||
local path = selected[1]
|
local path = selected[1]
|
||||||
local ok = project.set_pwd(path)
|
local ok = project.set_pwd(path)
|
||||||
if ok then
|
if ok then
|
||||||
vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes("<Esc>", true, false, true), "n", true)
|
vim.api.nvim_win_close(0, false)
|
||||||
LazyVim.info("Change project dir to " .. path)
|
LazyVim.info("Change project dir to " .. path)
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue