diff options
author | tv <tv@krebsco.de> | 2019-02-02 23:15:16 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-02-08 05:19:48 +0100 |
commit | 280a66c3a57b35dbae9e97c45a2a0fef9c1f4e8c (patch) | |
tree | 0e275eca589ca777fa4df2d061165b35462b786f /tv/2configs/vim.nix | |
parent | 79321442836ffdc6a3c6b3d0f5f2bf67437458e9 (diff) |
tv vim todo: allow A-Z in tags
Diffstat (limited to 'tv/2configs/vim.nix')
-rw-r--r-- | tv/2configs/vim.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tv/2configs/vim.nix b/tv/2configs/vim.nix index de843a3..575a3bc 100644 --- a/tv/2configs/vim.nix +++ b/tv/2configs/vim.nix @@ -162,7 +162,7 @@ let { \ start="." end="$\n" \ nextgroup=todoBlock - syn match todoTag /\[[a-z]\+\]/hs=s+1,he=e-1 + syn match todoTag /\[[A-Za-z]\+\]/hs=s+1,he=e-1 \ contained syn region todoBlock |