Dorian Karter
Dorian Karter
I'm also experiencing this issue and in support of this! Thank you!
I can confirm the issue on my end too (using default configuration - no customization, just dropped the ` require('lsp_signature').on_attach()` line in my lsp shared `on_attach`) https://user-images.githubusercontent.com/551858/169643551-fd49f41b-4675-4d9b-bb12-6fde2a63e1fe.mp4
I'm on Mac and not sure if this is related, but I run `fd` as the `FZF_DEFAULT_COMMAND`: ```viml let $FZF_DEFAULT_COMMAND = 'fd --type f --hidden --follow --color=always -E .git --ignore-file...
@junegunn Thank you so much! You are correct the issue was caused due to a PR on my colorscheme that removed those `g:terminal_color_*` settings https://github.com/rakr/vim-one/pull/104
I found that this keyword pattern can help prevent cmp from messing with the `%` sign: `[^[:blank:]%]*` ```lua { name = 'cmdline', keyword_pattern = [=[[^[:blank:]%]*]=] }, ``` It's similar to...
Same.. on both M1 and Intel. Oversight v2.0.1 macOS Monterey 12.5 Using external camera (Logitech BRIO) and audio interface (Universal Audio - Arrow)
Thanks @falood !! This was a very good pointer. I checked the contents of the `/deps/file_system/priv` and it only had inotifywait.exe in it: ``` ❯ l deps/file_system/priv total 16K drwxr-xr-x...
You can right click and open the executable. It should work fine after doing that once (but may require doing it again after updates). Or you can compile the go...
I actually prefer the current implementation. You can also try SplitJoin.vim which maps `gS` to do the same.
I built my terminal from source (Alacritty) and it helped for a bit, but now the error is back and happening in other terminals as well (iTerm) so I'm not...