Mercurial > dotfiles
view .zfun/zsh-autosuggestions/src/util.zsh @ 486:a3fc26c26f89
hg: enable strip extension
I still need this periodically, mostly when queueing/dropping hg patches.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 30 Jun 2020 10:38:59 -0400 |
parents | e1ce8897030d |
children |
line wrap: on
line source
#--------------------------------------------------------------------# # Utility Functions # #--------------------------------------------------------------------# _zsh_autosuggest_escape_command() { setopt localoptions EXTENDED_GLOB # Escape special chars in the string (requires EXTENDED_GLOB) echo -E "${1//(#m)[\"\'\\()\[\]|*?~]/\\$MATCH}" }