We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to lazy load plugins on CmdlineEnter, it seems that it is also triggered when opening a file or a directory in the netrw interface.
No configuration is needed. Just create an autocommand to show a message on CmdlineEnter.
vim.api.nvim_create_autocmd({ "CmdlineEnter" }, { callback = function() vim.print('triggered CmdlineEnter') end })
Now run nvim --clean -u minimal.lua and open a file or directory.
nvim --clean -u minimal.lua
No message printed.
v0.10.0-dev-2507+g3df1211eb
no
Ubuntu 22.04.4 LTS
Terminal
xterm-265color
build from repo
original issue: neovim/neovim#27726
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
When trying to lazy load plugins on CmdlineEnter, it seems that it is also triggered when opening a file or a directory in the netrw interface.
Steps to reproduce
Minimal config
No configuration is needed. Just create an autocommand to show a message on CmdlineEnter.
Now run
nvim --clean -u minimal.lua
and open a file or directory.Expected behavior
No message printed.
Neovim version (nvim -v)
v0.10.0-dev-2507+g3df1211eb
Vim (not Nvim) behaves the same?
no
Operating system/version
Ubuntu 22.04.4 LTS
Terminal name/version
Terminal
$TERM environment variable
xterm-265color
Installation
build from repo
original issue: neovim/neovim#27726
The text was updated successfully, but these errors were encountered: