aboutsummaryrefslogtreecommitdiffstats
path: root/hook.zsh
diff options
context:
space:
mode:
authorEllie Huxtable <e@elm.sh>2021-02-13 21:11:08 +0000
committerEllie Huxtable <e@elm.sh>2021-02-13 21:11:08 +0000
commita7263edbc94ee609fdd0c609698bf03f2d8e748e (patch)
tree8f5e2466883f1c0d00bf7a80bf229ac2b00727f4 /hook.zsh
parentMinor fixes (diff)
downloadatuin-a7263edbc94ee609fdd0c609698bf03f2d8e748e.zip
Rename zsh hook
Diffstat (limited to 'hook.zsh')
-rw-r--r--hook.zsh18
1 files changed, 0 insertions, 18 deletions
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