We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
# ~/.zshrc . ~/.zinit/plugins/zsh-vim-mode/zsh-vim-mode.plugin.zsh
type some word and move the cursor to the second character press 'v' to the visual mode, then press "S'" to add a pair of single quote
however, the correct result should be
g'i't add -A
the i has been moved to the wrong position.
only happen to the second character. other position will not happen.
thanks!
The text was updated successfully, but these errors were encountered:
This is a bug in Zsh itself, as shown with the following bare-bones example .zshrc:
.zshrc
autoload -Uz surround zle -N add-surround surround bindkey -M visual S add-surround
Sorry, something went wrong.
softmoth
No branches or pull requests
Reproduce Procedures
type some word and move the cursor to the second character
press 'v' to the visual mode, then press "S'" to add a pair of single quote
however, the correct result should be
the i has been moved to the wrong position.
note
only happen to the second character. other position will not happen.
thanks!
The text was updated successfully, but these errors were encountered: