1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 09:28:32 +02:00

kakoune: fix set option

The old `set-option global/ autoreload` code causes an error.

PR #1117
This commit is contained in:
Michael Millwood 2020-03-28 23:52:28 -05:00 committed by Robert Helgesson
parent 5969551a5c
commit 14f83a46d0
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -566,7 +566,7 @@ let
++ optional (autoComplete != null)
"set-option global autocomplete ${concatStringsSep "|" autoComplete}"
++ optional (autoReload != null)
"set-option global/ autoreload ${autoReload}"
"set-option global autoreload ${autoReload}"
++ optional (wrapLines != null && wrapLines.enable)
"add-highlighter global/ wrap${wrapOptions}"
++ optional (numberLines != null && numberLines.enable)