From a7263edbc94ee609fdd0c609698bf03f2d8e748e Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Sat, 13 Feb 2021 21:11:08 +0000 Subject: Rename zsh hook --- atuin.plugin.zsh | 18 ++++++++++++++++++ hook.zsh | 18 ------------------ 2 files changed, 18 insertions(+), 18 deletions(-) create mode 100644 atuin.plugin.zsh delete mode 100644 hook.zsh diff --git a/atuin.plugin.zsh b/atuin.plugin.zsh new file mode 100644 index 00000000..d46346f2 --- /dev/null +++ b/atuin.plugin.zsh @@ -0,0 +1,18 @@ +# Source this in your ~/.zshrc +export ATUIN_SESSION=$(atuin uuid) + +_atuin_preexec(){ + id=$(atuin history start $1) + export ATUIN_HISTORY_ID="$id" +} + +_atuin_precmd(){ + local EXIT="$?" + + [[ -z "${ATUIN_HISTORY_ID}" ]] && return + + atuin history end $ATUIN_HISTORY_ID --exit $EXIT +} + +add-zsh-hook preexec _atuin_preexec +add-zsh-hook precmd _atuin_precmd diff --git a/hook.zsh b/hook.zsh deleted file mode 100644 index d46346f2..00000000 --- a/hook.zsh +++ /dev/null @@ -1,18 +0,0 @@ -# Source this in your ~/.zshrc -export ATUIN_SESSION=$(atuin uuid) - -_atuin_preexec(){ - id=$(atuin history start $1) - export ATUIN_HISTORY_ID="$id" -} - -_atuin_precmd(){ - local EXIT="$?" - - [[ -z "${ATUIN_HISTORY_ID}" ]] && return - - atuin history end $ATUIN_HISTORY_ID --exit $EXIT -} - -add-zsh-hook preexec _atuin_preexec -add-zsh-hook precmd _atuin_precmd -- cgit v1.2.3