mirror of
https://github.com/nix-community/home-manager
synced 2024-11-20 01:59:45 +01:00
kakoune: update hooks (#3418)
Some hooks were removed in Kakoune, and some were added. This PR updates the list so they are aligned with the latest version of Kakoune. Removed mawww/kakoune@e4fb70e NormalBegin NormalEnd InsertBegin InsertEnd mawww/kakoune@78419bc InsertCompletionSelect Added mawww/kakoune@c8839e7 ClientCreate ClientClose mawww/kakoune@47ba36c RegisterModified mawww/kakoune@f2cc7bc User
This commit is contained in:
parent
a993eac106
commit
f97f191fe7
1 changed files with 4 additions and 5 deletions
|
@ -10,13 +10,9 @@ let
|
|||
options = {
|
||||
name = mkOption {
|
||||
type = types.enum [
|
||||
"NormalBegin"
|
||||
"NormalIdle"
|
||||
"NormalEnd"
|
||||
"NormalKey"
|
||||
"InsertBegin"
|
||||
"InsertIdle"
|
||||
"InsertEnd"
|
||||
"InsertKey"
|
||||
"InsertChar"
|
||||
"InsertDelete"
|
||||
|
@ -48,8 +44,11 @@ let
|
|||
"RawKey"
|
||||
"InsertCompletionShow"
|
||||
"InsertCompletionHide"
|
||||
"InsertCompletionSelect"
|
||||
"ModuleLoaded"
|
||||
"ClientCreate"
|
||||
"ClientClose"
|
||||
"RegisterModified"
|
||||
"User"
|
||||
];
|
||||
example = "SetOption";
|
||||
description = ''
|
||||
|
|
Loading…
Reference in a new issue