Bram Moolenaar
Bram Moolenaar
For me it says (somewhere in the configure output): ```checking for timer_create without -lrt... (cached) yes``` As a result, auto/config.h contains ```#define HAVE_TIMER_CREATE 1``` If that doesn't work for you,...
If you manually set cache values you have to make sure they are correct. Instead of 'vim_cv_timer_create=yes' you may need 'vim_cv_timer_create_with_lrt=yes'
Do we really need a function for this? You can do ```&undolevels = &undolevels```.
I doubt adding a function does much to visibility. One still needs to search the help to find this. Also, I don't think it is needed very often. Only in...
> > Do we really need a function for this? You can do &undolevels = &undolevels. > > We can also force a redraw of the statusline by executing `:let...
How about a screenshot to show the difference? I wonder if this will have backwards compatibility problems. You can't declare a variable halfway a block in ANSI C, which we...
There is a failing test that seems related to the change. Also perhaps a hint on how to test the change.
Thank you for starting this discussion. I had a vague plan to look into integrating treesitter, it is good to know it also has disadvantages. Vscode is widely used, thus...
> As someone who has spent months writing and maintaining TextMate and > tree-sitter grammars for real-world languages, let me tell you that > the TextMate grammar system is totally...
> ### Steps to reproduce > > 1. start gvim as GUI application (don't start gvim in terminal) > 2. Enable autoshelldir i.e. `:set autoshelldir` which will automatically set terminal...