diff options
author | tv <tv@krebsco.de> | 2017-11-15 16:41:29 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-11-15 16:41:29 +0100 |
commit | 2f183f41ca257fbe9b48b58314849175ceb2dc6b (patch) | |
tree | 9dde81783b6afca348fad1457a5f2395836f1a90 /tv/2configs/vim.nix | |
parent | 1f50c4e068294bba196695394660527963e7690b (diff) |
withGetopt: replace \\>
Diffstat (limited to 'tv/2configs/vim.nix')
-rw-r--r-- | tv/2configs/vim.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tv/2configs/vim.nix b/tv/2configs/vim.nix index ca4718646..8a27b606a 100644 --- a/tv/2configs/vim.nix +++ b/tv/2configs/vim.nix @@ -173,9 +173,13 @@ let { syn cluster nix_ind_strings contains=NixIND_STRING syn cluster nix_strings contains=NixSTRING - ${concatStringsSep "\n" (mapAttrsToList (lang: { extraStart ? null }: let + ${concatStringsSep "\n" (mapAttrsToList (name: { + extraStart ? null, + lang ? name + }: + let startAlts = filter isString [ - ''/\* ${lang} \*/'' + ''/\* ${name} \*/'' extraStart ]; sigil = ''\(${concatStringsSep ''\|'' startAlts}\)[ \t\r\n]*''; |