mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 09:48:42 +02:00
plugins/todo-comments: fix missing mkRaw for pattern options (#242)
This commit is contained in:
parent
933c87c282
commit
8fed61902a
2 changed files with 27 additions and 8 deletions
|
@ -62,7 +62,7 @@
|
|||
before = "";
|
||||
keyword = "wide";
|
||||
after = "fg";
|
||||
pattern = "[[.*<(KEYWORDS)\s*:]]";
|
||||
pattern = ''.*<(KEYWORDS)\s*:'';
|
||||
commentsOnly = true;
|
||||
maxLineLen = 400;
|
||||
exclude = [];
|
||||
|
@ -86,7 +86,7 @@
|
|||
"--line-number"
|
||||
"--column"
|
||||
];
|
||||
pattern = "[[\b(KEYWORDS):]]";
|
||||
pattern = ''\b(KEYWORDS):'';
|
||||
};
|
||||
|
||||
keymapsSilent = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue