Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: additionally saving history for each directory?



On Mon, Feb 8, 2021 at 5:26 PM Greg Klanderman <gak@xxxxxxxxxxxxxx> wrote:
>
> Figured I'd follow up with this on workers since I never got a
> response on whether
>
> save_per_directory_history () {
>   setopt localoptions incappendhistory
>   fc -p -a .zsh_local_history 1000
>   print -sr -- ${1%%$'\n'}
> }
>
> should work in zshaddhistory_functions for saving local history.

It doesn't work because you added the -a option to the fc command.

     A hook function may call 'fc -p ...' to switch the history context
     so that the history is saved in a different file from the that in
     the global HISTFILE parameter.  This is handled specially: the
     history context is automatically restored after the processing of
     the history line is finished.

(Hm, typo there, "from the that")

The history file isn't actually written until the hooks have all
finished running, because the exit status of the hook function can
control whether the event gets written at all.  "fc -p -a" closes the
alternate history when the function returns, which is before the
decision to write has been made, so nothing gets written.

The other non-obvious (and not really documented) thing about using
"fc -p" in the zshaddhistory hook is that it has to be the last line
in the function.  It appears from some prodding that you can follow it
with another history hook function in zshaddhistory_functions, but if
anything follows it in the same function, it doesn't work.  I suspect
this is unintentional, but it seems to be the reason that the
documentation has the example in the order that it does:

          zshaddhistory() {
            print -sr -- ${1%%$'\n'}
            fc -p .zsh_local_history
          }

Further, even if you put the "fc -p" before the "print -s", the hook
magic causes the line to be added to the original internal history
rather than to a new list created by "fc -p", so "fc -AI" or similar
have nothing to write into .zsh_local_history.

The only way to do it is to use "fc -p" without "-a" and as the last
command in the function.  And, I suspect although I got a bit lost
trying all the permutations, incappendhistory has to be a global
setopt rather than a local one, again because the local scope has
already ended before the write decision is made.




Messages sorted by: Reverse Date, Date, Thread, Author