mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
parent
4224c2a1af
commit
2fb326513a
1 changed files with 7 additions and 3 deletions
10
lib/misc.zsh
10
lib/misc.zsh
|
@ -1,6 +1,10 @@
|
|||
## smart urls
|
||||
autoload -U url-quote-magic
|
||||
zle -N self-insert url-quote-magic
|
||||
## Load smart urls if available
|
||||
for d in $fpath; do
|
||||
if [[ -e "$d/url-quote-magic"]]; then
|
||||
autoload -U url-quote-magic
|
||||
zle -N self-insert url-quote-magic
|
||||
fi
|
||||
done
|
||||
|
||||
## jobs
|
||||
setopt long_list_jobs
|
||||
|
|
Loading…
Reference in a new issue