mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
12 lines
223 B
Bash
12 lines
223 B
Bash
|
|
background-terminal() {
|
|
if [ -z "$TERMINAL" ]; then
|
|
xterm &
|
|
else
|
|
$TERMINAL &
|
|
fi
|
|
}
|
|
zle -N background-terminal
|
|
bindkey -M vicmd "^N" background-terminal
|
|
bindkey -M viins "^N" background-terminal
|
|
|