mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
8 lines
311 B
Bash
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
|