mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-01-05 00:31:51 -08:00
fix(beancount): link completion
Due to not escaping the literal ^ in the regexp.
Fix: #8414
Amend: d3e8ca8d9d
This commit is contained in:
parent
ed860b2b06
commit
7280e44dc5
1 changed files with 1 additions and 1 deletions
|
|
@ -191,7 +191,7 @@ will theirs, recursively)."
|
|||
(<= pos (match-end 1))))
|
||||
(list (match-beginning 1) (match-end 1)
|
||||
(+beancount-completion-table
|
||||
(concat " \\(" (match-string-no-properties 2) "[" beancount-tag-chars "]+\\)")
|
||||
(concat " \\(" (regexp-quote (match-string-no-properties 2)) "[" beancount-tag-chars "]+\\)")
|
||||
1 (if (equal (match-string-no-properties 2) "#") 'tags 'links))))
|
||||
|
||||
((progn
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue