ohmyzsh/plugins/refresh/refresh.plugin.zsh
2010-11-25 16:01:50 +01:00

8 lines
311 B
Bash

#!/usr/bin/env zsh
# ------------------------------------------------------------------------------
# Simple ZLE widget that binds F5 to "source ~/.zshrc".
# ------------------------------------------------------------------------------
_refresh() { source ~/.zshrc }
zle -N _refresh
bindkey '^[[15~' _refresh