György Andorka
György Andorka
Well, yeah, it don't think it's our responsibility to define fallback settings, and to do checks in the first place - `Cursor` is a built-in highlight group, it should be...
518389452cfb65d0493c134c58675cdeddbeb371 changed the flag `case_insensitive` to `case_sensitive` (with default `false`).
97ab70a97dc36b8440916daab1fa2f1fc6dcb98c changes all arguments of the `leap` function and all fields of the (so far undocumented) `state` table (i.e., the user-facing API) to snake case, to ease usage in plain...
As of 235ad9d50ed290e8f770eef580cb07c5bd87c8c5, `opts.max_aot_targets` replaces `opts.highlight_ahead_of_time`. This is analogous to our "smart" autojump feature - instead of using a binary flag, ahead-of-time displaying of target beacons can be enabled conditionally,...
539d6e6936462a4685bd6c895ce46b5ff1c1826b removed `special_keys.eol`. If you want to set an alias for `\n`, simply define a character class that contains it, e.g. `"\r\n"` (or `{'\r', '\n'}`) if you want to use...
Yes, that is on the todo list. The problem is that window-local options (like `conceallevel`) are not trivial to handle when doing cross-window motions, so I decided not doing any...
`LeapEnter` is triggered right after `s`, I don't know why you don't see the effect... maybe you could share the autocmd snippet you used, possibly there's some trivial mistake somewhere.
Oh, I get it. The event is `User`, and `LeapEnter`/`LeapLeave` are _patterns_ for that event. You have to call it like this: ```Lua vim.api.nvim_create_autocmd('User', { pattern = 'LeapEnter', ... }...
Set `exit_after_idle_msecs.unlabeled = nil` (not 0). 0 means "exit after 0 seconds (= immediately)", that is why you don't see the following matches highlighted. > I also think the highlighting...
> I want the cursor to be displayed immediately above the first char A (virtual/fake) cursor _should_ be displayed above the first char. (If you don't see it, then check...