Liu
Liu
Same issue, but set one of two fields below to false will deduplicate the documentation. I guess maybe the `runtime` already support something like the `types` does. ```lua -- set...
> Sorry, I'm not quite sure what you mean, can you provide a step-by-step description of how you would like this to work? 1. Select a line of file by...
> This is part of why folding only works manually now. Using foldexpr may work.
I do not know if the code below is the best way, but there is a issue that the foldtext can not be highlighted. Do you have any thoughts? ```vim...
@rickhowe If I understand correctly, the `[b ]b [e ]e` mappings are only valid for a period of time when diffing. Maybe use the `OptionSet` event for the `diff` option:...
Same as #52, maybe you could try the code below. ```lua vim.keymap.set("n", "K", function() local api = vim.api local hover_win = vim.b.hover_preview if hover_win and api.nvim_win_is_valid(hover_win) then api.nvim_set_current_win(hover_win) else require("hover").hover()...
使用返回零值的函数时,输出的结果处有误。
You could use the `ModeChanged` event and the `vim.v.operator` variable to achieve this. ```lua local api = vim.api local autocmd = api.nvim_create_autocmd local augroup = api.nvim_create_augroup local g = augroup("user/keep_yank_position",...
> Hi @gh-liu, thanks for the PR! > > Unfortunately, I don't think this is a safe change. It might not always be a good idea to shorten the path,...
> Are you seeing an error? No. > Does it not do anything at all? Yes, using `|` to select(vsplit), the path is still absolute. > Is it closing the...