Sam
Sam
```lua local api = vim.api local insertCursorCol = 0 vim.api.nvim_create_autocmd({ "InsertEnter" }, { pattern = "*", callback = function() _, insertCursorCol = unpack(api.nvim_win_get_cursor(0)); end, }) vim.keymap.set("i", "", function() local _,...
the issue with syntax is it crashes neovim whenever i check if the highlight for it is cleared with `hl_iscleared` so i picked the last highlight which seems to work...
never mind using syntax crashes noevim with error 139 regardless if i am checking it or not
Turns out the issue is inspect_pos is calling synstack inside on_line which causes neovim to crash, probably because of this: > Note: doing anything other than setting extmarks is consideredg...
This was a bad idea. I only did it because I wasn't on nightly, at the time of making this pr.
This intended behavior for mapped escape in vim and no one really knows why it is the way it is. https://github.com/neovim/neovim/issues/21585
This still needs documentation, but i am not sure if the current config interface is good, i added 2 options. ```lua window = { auto_hide = false, show_on_cursor_update = false,...
i made branch in my fork that shows ghost text until an item is selected the only issue right now is i am having a hard time naming the options...
This is netrw issue, removing the following lines from `autoload/netrw.vim` fixes it. ```vim " The following code wipes out currently unused netrw buffers " IF g:netrw_fastbrowse is zero (ie. slow...
`s:NetrwEnew` Deletes the buffer with `s:NetrwBufRemover`. Sorry for the wrong code in my last message. ```vim " Clean out the last buffer: " Check if the last buffer has #...