Maxim Kim

Results 39 issues of Maxim Kim

If you rename files, all related buffers should be aware of it. ### Single/multiple files/directorys rename, no corresponding buffers are opened in vim Do nothing ### Single file rename and...

enhancement

Win10, vim8.2 Last word of the line is not used by completion. ![asyncomplete-buffer-issue1](https://user-images.githubusercontent.com/234774/72179372-d1516d00-33f5-11ea-9b5d-a8d840a31db3.gif)

Fix #15 Default behaviour is the same, only english words are completed. New global variable is introduced: `g:asyncomplete_buffer_word_rx_class` Default value is `'[:alnum:]'` which is stripped version of `\w` User that...

Win10, vim8.2 Looks like only english words are supported? ![asyncomplete-buffer-issue2](https://user-images.githubusercontent.com/234774/72179614-52a8ff80-33f6-11ea-8a7c-7da492fbb949.gif)

Win10 `Iosevka Habamax` is a custom iosevka build which by default includes extended variant of the font. It works everywhere but fvim. ![fvim-iosevka-extended](https://user-images.githubusercontent.com/234774/73769860-77da2500-478c-11ea-9ab6-88c5834b2b1b.gif)

Is it possible not to map `` and ``? Those are very convenient for other global user things (window switching) and it would be really good to not shadow it...

OS: win10 neovim: NVIM v0.5.0-330-g71ee46acc Starting program with either `:Spawn` or `:Start` has no effect (program is not started): To reproduce: 1. run neovim on win 10 2. `:Start explorer.exe`...

### Steps to reproduce 1. `vim -Nu NONE` 2. `set ft=vim` 3. `syn on` Paste following text: ``` vim9script import autoload 'dir/action.vim' command! -buffer -nargs=1 -complete=custom,action.HistoryComplete DirHistoryJump action.HistoryJump() ``` ![image](https://user-images.githubusercontent.com/234774/181422818-4874b13e-09ea-489b-a1c6-d4b1fc913c48.png)...

bug

### Steps to reproduce 1. `vim -Nu NONE` 2. `syn on`, `set ft=vim` 3. type `sort.SomeFunc()` `.` is highlighted in red ![image](https://user-images.githubusercontent.com/234774/180598082-02076985-dd9f-4c10-a355-241f9e2fd5c6.png) ![image](https://user-images.githubusercontent.com/234774/180598089-3ff5dba0-ea80-4022-af07-1522e0463526.png) ### Expected behaviour Dot should not be...

bug

Hi, is it possible to make ivy use fuzzy or space separated search in the same session? I mean, if there is no spaces -- use fuzzy and if there...