diff options
| author | Ellie Huxtable <e@elm.sh> | 2021-02-16 21:34:33 +0000 |
|---|---|---|
| committer | Ellie Huxtable <e@elm.sh> | 2021-02-16 21:34:33 +0000 |
| commit | a342dc58bb637847532687f109b3083049c6fc83 (patch) | |
| tree | bf743b56a21704feb9a63faf43f0c1ba3d5970e7 /src | |
| parent | Add init command (#12) (diff) | |
| download | atuin-a342dc58bb637847532687f109b3083049c6fc83.zip | |
BUFFER -> LBUFFER
Diffstat (limited to '')
| -rw-r--r-- | src/shell/atuin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shell/atuin.zsh b/src/shell/atuin.zsh index a984428f..840015dc 100644 --- a/src/shell/atuin.zsh +++ b/src/shell/atuin.zsh @@ -23,7 +23,7 @@ _atuin_search(){ output=$(eval $ATUIN_HISTORY | fzf) if [[ -n $output ]] ; then - BUFFER=$output + LBUFFER=$output fi zle reset-prompt @@ -36,7 +36,7 @@ _atuin_up_search(){ output=$(eval $ATUIN_HISTORY | fzf --no-sort --tac) if [[ -n $output ]] ; then - BUFFER=$output + LBUFFER=$output fi zle reset-prompt |
