Oops, sorry for the too-hasty reply. I realized after sending I can of
course nnoremap the remaining ones that I mentioned. Altogether, seems
like I can workaround this issue. Thanks for your time again.
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your repl
Hi Christian,
Quoting Christian Brabandt (2018/02/13 04:42:25 -0500)
> thanks for contributing. However I wonder what the Search autocommand
> can do, what cannot be achieved using the CmdlineEnter and CmdlineLeave
> event (see the example given at :h 'incsearch').
Thanks for the pointer, I did n
Hello,
--> Motivation
The attached patch adds a new autocmd event that is triggered on
normal-mode search commands. The use case I have is the following:
:au SearchCommand * setl cursorline | setl cursorcolumn
which would make it easier to see which search result your cursor is
focused on whi
Hello,
--> The issue
While in Command-line-mode, entering for the :find command to
complete a directory's name does not append the ending slash.
Example:
vim -N -u NONE
:find dir
" Observe that while the name is completed, no slash is appended.
This is inconsistent with :edit, :cd, etc.