1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 09:58:32 +02: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:
Loric Brevet 2022-12-29 13:42:24 +01:00 committed by GitHub
parent a993eac106
commit f97f191fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,13 +10,9 @@ let
options = { options = {
name = mkOption { name = mkOption {
type = types.enum [ type = types.enum [
"NormalBegin"
"NormalIdle" "NormalIdle"
"NormalEnd"
"NormalKey" "NormalKey"
"InsertBegin"
"InsertIdle" "InsertIdle"
"InsertEnd"
"InsertKey" "InsertKey"
"InsertChar" "InsertChar"
"InsertDelete" "InsertDelete"
@ -48,8 +44,11 @@ let
"RawKey" "RawKey"
"InsertCompletionShow" "InsertCompletionShow"
"InsertCompletionHide" "InsertCompletionHide"
"InsertCompletionSelect"
"ModuleLoaded" "ModuleLoaded"
"ClientCreate"
"ClientClose"
"RegisterModified"
"User"
]; ];
example = "SetOption"; example = "SetOption";
description = '' description = ''