rpdillon / todotxt.el

A todo.txt client for Emacs
55 stars 18 forks source link

This bug when todotxt.el and show-paren-mode use together. #17

Open nkenbou opened 7 years ago

nkenbou commented 7 years ago

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")