Skip to content

Instantly share code, notes, and snippets.

@lixianyang
Created May 23, 2020 08:52
Show Gist options
  • Select an option

  • Save lixianyang/d2fd81b2e0d6668501b8afeb2ef9dd63 to your computer and use it in GitHub Desktop.

Select an option

Save lixianyang/d2fd81b2e0d6668501b8afeb2ef9dd63 to your computer and use it in GitHub Desktop.
ohmyzsh 粘贴卡顿
https://github.com/zsh-users/zsh-autosuggestions/issues/238#issuecomment-389324292
```shell
# This speeds up pasting w/ autosuggest
# https://github.com/zsh-users/zsh-autosuggestions/issues/238
pasteinit() {
OLD_SELF_INSERT=${${(s.:.)widgets[self-insert]}[2,3]}
zle -N self-insert url-quote-magic # I wonder if you'd need `.url-quote-magic`?
}
pastefinish() {
zle -N self-insert $OLD_SELF_INSERT
}
zstyle :bracketed-paste-magic paste-init pasteinit
zstyle :bracketed-paste-magic paste-finish pastefinish
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment