nenahp
nenahp
https://github.com/Tencent/rapidjson/issues/2277
`:set ignorecase` is needed to reproduce.
`vim.ui.open` require neovim 0.10.0+ while I find this in README > Neovim >= 0.8.0 (needs to be built with LuaJIT)
`:h grr`. > If not wanted, these keymaps can be removed at any time using >|vim.keymap.del()| or |:unmap| (see also |gr-default|).
For lazy.nvim, module name may not exist in `package.path`, `rtp`, here is a hack: https://github.com/mrjones2014/lua-gf.nvim/blob/acd0d043cab6a118a069979e8081651f2ecf6637/plugin/lua-gf.lua#L46
> I'm just not sure if that's desired behaviour, because some modules take a really long time to load, like avante (because when loading that module, it also loads tones...
This is how `:only` work now, make a custom command ```lua function M.only() local cw = api.nvim_get_current_win() vim .iter(api.nvim_tabpage_list_wins(0)) :filter( function(w) return w ~= cw and api.nvim_win_get_config(w).focusable and true or...
I have a question why `snacks.bigfile` use `vim.filetype.add` instead of simply use a `BufReadPre` autocmd to `set ft=bigfile`? * `runtime! filetype.lua` happened after source user config file, so user's `BufReadPre`...
Use string command (not table)
```bash echo -e "1\n2\n3" | fzf --multi --bind ctrl-a:reload:'echo -e 9\\n8;touch /tmp/reloaded' --bind result:transform:'[[ -f /tmp/reloaded ]] && rm /tmp/reloaded && echo "pos(1)+select"' ```