mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
fix(beancount): link completion
Due to not escaping the literal ^ in the regexp.
Fix: #8414
Amend: d3e8ca8d9d
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user