Files
dotfiles/zsh/.oh-my-zsh/custom/plugins/zsh-autosuggestions/src/util.zsh
Christian Nieves ea31968675 ohmyzsh
2022-07-28 17:35:07 +00:00

12 lines
401 B
Bash

#--------------------------------------------------------------------#
# Utility Functions #
#--------------------------------------------------------------------#
_zsh_autosuggest_escape_command() {
setopt localoptions EXTENDED_GLOB
# Escape special chars in the string (requires EXTENDED_GLOB)
echo -E "${1//(#m)[\"\'\\()\[\]|*?~]/\\$MATCH}"
}