todotxt.el
todotxt.el copied to clipboard
This bug when todotxt.el and show-paren-mode use together.
If todotxt.el and show-paren-mode are used together, a priority is not shown into the mini buffer.
When the cursol is at start of line.
|(A) aaa
↓ press e
aaa
When the cursol is at the right side of a closing paren.
(A)| aaa
↓ press e
aaa
The following is settings to simulate this bug.
(require 'todotxt)
(setq todotxt-file "~/Dropbox/todo/todo.txt")
(require 'paren)
(show-paren-mode 1)
(setq show-paren-delay 0)
(setq show-paren-style 'expression) ; paren のスタイル。expression は括弧内も強調表示
(set-face-background 'show-paren-match-face nil)
(set-face-underline 'show-paren-match-face "yellow")