Sent when Hilbish is going to exit.
This signal returns no variables.
Sent when the Vim mode of Hilbish is changed (like from insert to normal mode). This can be used to change the prompt and notify based on Vim mode.
string
modeName
The mode that has been set.
Can be these values: insert
, normal
, delete
or replace
Sent when the user cancels their command input with Ctrl-C
This signal returns no variables.
Thrown when a notification is sent.
table
notification
The notification. The properties are defined in the link above.
Sent when the current directory of the shell is changed (via interactive means.) If you are implementing a custom command that changes the directory of the shell, you must throw this hook manually for correctness.
string
path
Absolute path of the directory that was changed to.
string
oldPath
Absolute path of the directory Hilbish was in.
Sent when the user does a “vim action,” being something like yanking or pasting text.
See doc vim-mode actions
for more info.
string
actionName
Absolute path of the directory that was changed to.
table
args
Table of args relating to the Vim action.
Want to help improve this page? Create an issue.