vim-repeat
vim-repeat copied to clipboard
repeat.vim: enable repeating supported plugin maps with "."
This issue is for reference, I don't have a solution. At some point Vim changed its `b:changedtick` behavior after `u`, to increment more than vim-repeat expects. This can be reproduced...
Hi, I first apology because this is not a technical issue but more an incomprehension of my part about the use of this plugin with lua commands. I tried to...
I had trouble to make vim-repeat work in neovim with lua, but finally here it is: ```lua -- tpope/vim-repeat - allows . repeat vim.api.nvim_create_user_command( 'BigInnerWord', function() get_big_word('i') end, {} )...
Fixes #94, fixes #63. See [this comment](https://github.com/tpope/vim-repeat/issues/94#issuecomment-1538344088) for an exaplanation of the issue. #79 was a previous PR with the same fix that was abandoned after three years of inactivity.
### Summary This PR is part of a push to get (neo)vim plugins on [LuaRocks](https://luarocks.org/labels/neovim). * See [this blog post](https://mrcjkb.github.io/posts/2023-01-10-luarocks-tag-release.html), which follows up on [a series of posts](https://teto.github.io/posts/2021-09-17-neovim-plugin-luarocks.html) by @teto....
Steps to reproduce: 1. use a [surround.vim](https://github.com/tpope/vim-surround) action such as `csi"` 2. try to repeat with `.` multiple times (it works) 3. now press `u` to undo last repeat 4....
By reading the README it was not clear to me how to use this plugin. Using this screencast (http://vimcasts.org/episodes/creating-repeatable-mappings-with-repeat-vim/) I managed to figure out how it works. Here is a...
Hello, I am using `neovim`, but some key mapping will be disabled after I use some plugins, such as `vim-surround` and `coc-explorer` after execute `yskw'`, the u will restore to...
I've got vim-speeddating and vim-repeat loaded and find that undo followed by repeat does not repeat the correct action. Example: 1. in normal mode, `A0`. 2. `.` appends 0's, as...
It looks overriding some keymaps. It already checks existing keymap for `U`, though, also other keymaps `.`, `u`, `` should do so, shouldn't them? Related with the issue https://github.com/tpope/vim-repeat/issues/91, too....