lib/misc.zsh
1f05826a
 ## smart urls
 autoload -U url-quote-magic
 zle -N self-insert url-quote-magic
 
 ## file rename magick
b6d77820
 bindkey "^[m" copy-prev-shell-word
 
 ## jobs
00a190bc
 setopt long_list_jobs
 
 # Check for updates on initial load...
 if [ "$DISABLE_AUTO_UPDATE" = "true" ]
 then
   return
 else
   /bin/sh $ZSH/tools/check_for_upgrade.sh
 fi