Bram Moolenaar
Bram Moolenaar
> Similar to `thesaurusfunc`, we could have an option `msgfunc` that > allows the user to define a custom function that displays messages > that are printed with `:echo`, `:echom`,...
> > Wouldn't it be better to add a command or function that displays a > > message in a user-defined way? E.g. in a popup or a message window....
It looks like nvim doesn't clear the screen, but draws on top, while Vim clears the screen. That causes some flicker, but it makes sure that there are no remaining...
> The ftplugin for '.vim' files does not seem to have 'include' and > 'define' patterns; adding them would enhance navigation across > Vimscript files, at least for vim9script, >...
> I personally use the following here: > https://gist.github.com/bfrg/a7343cb63b4a7170a140e9b5b9326b23 Hmm, I don't think ":command" needs to be found with 'define'. You can find commans with [i or jump to them...
> @brammool Should I open a pull request? This is what I have now: " set 'include' to recognize import commands setlocal include=\\v^\\s*import\\s*(autoload)? " set 'define' to recognize export commands...
> > Hmm, I don't think ":command" needs to be found with 'define'. > > You can find commands with [i or jump to them with [. > > Yes,...
> I guess the macos CI is broken... for 4 lignes (one if) I don't think > I change a lot of perf x) Mac OS CI is more flaky...
I wonder what happens when calling setcmdline() while in custom completion. Should have a test for that. There might be other situations where changing the command line unexpectedly might cause...