diff options
author | tv <tv@krebsco.de> | 2019-02-02 23:15:16 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2019-02-02 23:15:16 +0100 |
commit | 4be997d42348cc05065e3439007c8a2d32feaa04 (patch) | |
tree | 1028c4b6599d1c863c35e09eba8101871b196c45 /tv | |
parent | 4961c28dae4e7b3903fb6b0792960dc4f82ae24c (diff) |
tv vim todo: allow A-Z in tags
Diffstat (limited to 'tv')
-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 de843a30f..575a3bcb0 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 |