Skip to content

Commit

Permalink
kakoune: update hooks (nix-community#3418)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
lobre authored and 15cm committed Feb 9, 2023
1 parent 5e72ac8 commit 58964fa
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions modules/programs/kakoune.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,9 @@ let
options = {
name = mkOption {
type = types.enum [
"NormalBegin"
"NormalIdle"
"NormalEnd"
"NormalKey"
"InsertBegin"
"InsertIdle"
"InsertEnd"
"InsertKey"
"InsertChar"
"InsertDelete"
Expand Down Expand Up @@ -48,8 +44,11 @@ let
"RawKey"
"InsertCompletionShow"
"InsertCompletionHide"
"InsertCompletionSelect"
"ModuleLoaded"
"ClientCreate"
"ClientClose"
"RegisterModified"
"User"
];
example = "SetOption";
description = ''
Expand Down

0 comments on commit 58964fa

Please sign in to comment.