-
Notifications
You must be signed in to change notification settings - Fork 373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breaks '.' #3
Comments
Hello srushti, |
Yeah, I can use a macro, but I'd really rather not have to do that every time. |
It might be worth looking into vim repeat to accomplish this. |
vim-repeat doesn't work for me,maybe I didn't configure vim-repeat write. |
I've been experiencing this problem fairly frequently lately - is this not fixed? |
@jiangmiao Is it necessary to use e.g.
|
@ptrin I've tested code. But it cannot work. The function action won't be recorded. The code |
So for future reference, using Ctrl+V to circumvent auto-pairs does work... As long as you are careful to not trigger auto-pairs by escaping each of these open parens/brackets with Ctrl+V they will land in the dot register properly. |
Note: Starting from version 7.4.849 you can use |
@chrisbra |
@muffinmad yes |
The issue should be fixed now. |
Works great but only in nvim and not vim? Can anyone confirm? |
@unphased Works fine in vim 7.4.1639. You need at least vim 7.4.849 i guess. |
It seems like new lines within a pair breaks repeating with '.'. Has anyone else experienced this? For example:
Pressing '.' after that only enters a blank line. Any ideas? |
I'm not sure if this is even fixable (and I've faced similar issues with other pairing plugins), but could it possibly be made to work with '.'.
Currently if I type ''i[Hello world]' and then hit '.' I only get the 'Hello World' and not the brackets. I understand they work as different actions, but unfortunately vim users are used to thinking of an insert action as a repeatable command.
This becomes even more tricky if you use this as part of a 'cw' (change word) type command, because it forgets the changing part of the action.
The text was updated successfully, but these errors were encountered: