在上面的屏幕截图中,可以看到Emacs突出显示括号之间的空格,除非我将光标移动到任意一侧。
我在emacs配置中启用了smartparens,但即使我禁用它们,这个问题仍然存在。 我也没有启用空白模式。
知道可能导致这种情况的原因吗?
我的配置的相关部分:
(require 'smartparens-config)
(smartparens-global-mode t)
(show-smartparens-global-mode t)
感谢。
答案 0 :(得分:7)
不幸的是 Ignacy Moryc 给出的解决方案对我没有帮助,但是这个有帮助:
(setq sp-highlight-pair-overlay nil)
答案 1 :(得分:4)
这看起来像show-paren-mode
如果您的配置文件中有(show-paren-mode t)
,则可能需要将其删除。或者,您可以将show-paren-style
变量值更改为parenthesis
(setq show-paren-style 'parenthesis)