diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-06-25 01:10:02 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-06-25 01:10:02 +0200 |
commit | 44c011c5988077b515204159b6930c69c0475571 (patch) | |
tree | 8e441b3c7b8de05f7a92e0bcf61959713bf1edf8 /config/essentials/zsh/widgets.zsh | |
parent | 58ba99570d0bdbb41b5c7c8f2a0c53ea9299ea4c (diff) |
checkpoint
Diffstat (limited to 'config/essentials/zsh/widgets.zsh')
-rw-r--r-- | config/essentials/zsh/widgets.zsh | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/config/essentials/zsh/widgets.zsh b/config/essentials/zsh/widgets.zsh index 233ea65..cce9fbc 100644 --- a/config/essentials/zsh/widgets.zsh +++ b/config/essentials/zsh/widgets.zsh @@ -1,8 +1,7 @@ # Surround line in variable -surround_in_var() -{ - BUFFER=" \"\$($BUFFER)\"" - zle beginning-of-line +surround_in_var() { + BUFFER=" \"\$($BUFFER)\"" + zle beginning-of-line } zle -N surround_in_var bindkey '\ev' surround_in_var @@ -10,9 +9,7 @@ bindkey '\ev' surround_in_var # Insert output from the previous command zmodload -i zsh/parameter insert-last-command-output() { - LBUFFER+="$(eval $history[$((HISTCMD-1))])" + LBUFFER+="$(eval $history[$((HISTCMD - 1))])" } zle -N insert-last-command-output bindkey "^Xl" insert-last-command-output - -# |