Eshell history to include bash_history #1043
-
When I press consult-history I see all eshell history nicely. I would like to have this history to include bash_history = how can I achieve this? I came across this snippet from ivy - and I replaced ivy-read with
Looking forward to pointers to try out. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I suggest to use |
Beta Was this translation helpful? Give feedback.
consult-history
accesses history variables, depending on context. Accessing the bash history is out of scope for Consult.I suggest to use
completing-read
instead ofconsult--read
here. In any case, make sure to use the arguments correctly. Read the manual and doc strings regarding that. Simply replacingivy-read
withconsult--read
won't fly.