Loric Brevet

Results 38 issues of Loric Brevet

### Version of Kakoune 83fb65aef5729167b47c6ec22a57e5bd6ac5a9ae ### Reproducer 1. Start an empty kakoune with `kak -n`. 2. `` save the beginning of the file to the jump list (so first `*`...

bug

Hello, I know that `M` does `Restore selections from mark`. But it replaces in my opinion an important motion of vim which is to go to the middle line of...

It seems I cannot define the foreground color of a visual selection. ``` lexers.STYLE_SELECTION = 'fore:yellow' ``` This above does not work. Not sure if the problem is in this...

core:ui

Visual feedback can improve the experience when dealing with search and replace, or with SAM commands. In Neovim for example, there are those options: ``` incsearch: While typing a search...

I am trying to analyse the differences between vis and vim when targeting a matching pair from outside of the text object, or when there are both a matching pair...

I don't know if this is something doable in `vi/nvi` but in `vim/nvim` or `kakoune`, you can redirect the output of a command in the shell to the editor. ```...

When you have syntax highlighting disabled with `set nohl`, it is really hard to distinguish the separation between splits, because the statusline background (which is white by default) is removed....

Playing with buffers/registers is super powerful. I might post some examples of workflows that it allows later for documentation. But to be able to fully make use of them, I...

That would be useful to be able to set the search register manually. For example, let's say I have this text: ``` // special command to search hello 3j"/ywn //...

I see that you parse 3 command line arguments in the main logic of vi: `-s`, `-e` and `-v`. https://github.com/aligrudi/neatvi/blob/master/vi.c#L1653 I am struggling to understand what they do exactly, and...