aileot
aileot
You seems to have overlooked some users 1. who want to map only with sneak#wrap() flexibly, but without `Sneak_foo` 2. who want to use Sneak only buffer-locally, like readonly-buffer or...
Thank you for the reply. It seems better to map keys via dictionaries so that we don't have to see anywhere but a dictionary in our own vimrc if we...
Sorry for the late reply. I've missed your review. I agree with you, but the magic number should be replaced.
Yes, I can confirm it. It appears reasonable that `vim.fn.getline()` should have higher compatibility with the irreplaceable endpoint `vim.fn.strdisplaywidth()` since both are native Vim functions.
This might not be what you expect, but we can generate lua doc with the builtin `lua` function, e.g., - fennel source: - generated lua code:
I know I'm being a bit forward, but you might want to try https://github.com/aileot/emission.nvim. The plugin is a fork of this highlight-undo.nvim, but any keymaps are irrelevant there. (sorry for...
Well, though I don't like the following approach, mapping keys buffer-locally on every `BufEnter` event would be a workaround to avoid keymap conflicts. `vim.schedule` or `vim.defer_fn` could also help avoid...
You are right. So did I comment. I don't mean to pick a fight.
This issue is reproduced by `cd` to a directory symlinked to another directory under git management when `directory.repo_root_style` is set. ```toml [directory] repo_root_style = 'blue' ``` ```sh mkdir -p /tmp/foo/bar...