2
2
鏡像自 https://github.com/Hilbis/Hilbish synced 2025-06-30 16:22:03 +00:00

docs: document hilbish.vimAction hook

This commit is contained in:
TorchedSammy 2022-03-13 17:44:54 -04:00
父節點 726d265cca
當前提交 feb2ea18fb
簽署人: sammyette
GPG 金鑰 ID: 904FC49417B44DCD

查看文件

@ -1,3 +1,7 @@
+ `hilbish.exit` > Sent when Hilbish is about to exit.
+ `hilbish.vimMode` > Sent when Hilbish's Vim mode is changed (example insert to normal mode)
+ `hilbish.vimMode` -> modeName > Sent when Hilbish's Vim mode is changed (example insert to normal mode),
`modeName` is the name of the mode changed to (can be `insert`, `normal`, `delete` or `replace`).
+ `hilbish.vimAction` -> actionName, args > Sent when the user does a "vim action," being something
like yanking or pasting text. See `doc vimMode actions` for more info.