Grzegorz Milka

Results 18 issues of Grzegorz Milka

When you open a new vertically split window through FZF, lens.vim stretches that window to maximal allowed width. I've created a minimal example at https://github.com/gregorias/lens.vim-fzf-issue that reproduces this issue. I've...

- `nvim --version`: v0.6.0 - `git --version`: 2.34.1 - Operating system/version: Manjaro - Terminal name/version: Kitty 0.23.1 ### Steps to reproduce 1. Add `config = { max_jobs=4, },` to the...

bug

Since #119 vim-ledger incorrectly sets `makeprg` to `(hledger -f g:ledger_main::S print > /dev/null)` in Neovim. The root cause is that the expansion works differently between Vim and Neovim. Also, `::S`...

## Repro 1. Export your Rectangle Pro config. 2. Change the menu bar icon. 3. Import your config back. ## What happens The menu bar icon in the settings changes...

### Problem [`maparg`'s documentation](https://github.com/neovim/neovim/blob/5732aa706c639b3d775573d91d1139f24624629c/runtime/doc/builtin.txt#L4819-L4823) (and also [this](https://github.com/neovim/neovim/blob/5732aa706c639b3d775573d91d1139f24624629c/runtime/doc/builtin.txt#L300-L302)) say that the returned Dict contains rhs of the maps. This is incorrect, because they can contain Lua callbacks, e.g., the function can...

documentation

## Reproduction steps 1. Write `echo 'Let\'*` (`*` stands for the cursor). 2. Type `'`. 3. Autopairs pairs the quotemark and the state ends up as `echo 'Let\''*'`. ## Expected...

This plugin [synchronously calls `vim.fn.getcompletion`](https://github.com/hrsh7th/cmp-cmdline/blob/8fcc934a52af96120fe26358985c10c035984b53/lua/cmp_cmdline/init.lua#L114). When that happens, the entire Neovim is blocked until that call completes. Unfortunately, that call can take a long time in some circumstances. For example,...

At my work, we have a huge monorepo with a directory with over 70k entries. This plugin, being synchronous, was blocking Neovim for tens of seconds. This option should be...

### Did you check docs and existing issues? - [X] I have read all the which-key.nvim docs - [X] I have searched the existing issues of which-key.nvim - [X] I...

bug

Click doesn't close file options during shell completion, which causes a resource warning if a program uses a file option. For example, I have group like this: ```python @click.group() @click.option('--config_file',...