# HG changeset patch # User Oleksandr Gavenko # Date 1458723486 -7200 # Node ID 8c629eb20c0b2c7b02071ec9d7f82e65167bbaaf # Parent f26bcd32611d3a7699788854c56cddeef9cb8fc7 Highlight other article headers. diff -r f26bcd32611d -r 8c629eb20c0b contrib/gadict.el --- a/contrib/gadict.el Tue Mar 22 20:54:47 2016 +0200 +++ b/contrib/gadict.el Wed Mar 23 10:58:06 2016 +0200 @@ -18,7 +18,8 @@ ;;; Code: (defvar gadict-font-lock-keywords - '( ("^\\(_\\{2\\}\\)\n\n\\(\\w.*\\)$" (1 font-lock-function-name-face) (2 font-lock-keyword-face)) + '( ("^\\(__\\)\n\n\\(\\w.*\\)$" (1 font-lock-function-name-face) (2 font-lock-keyword-face)) + ("^ .*\n\\(\\w.*\\)" (1 font-lock-keyword-face)) ("^#.*" . font-lock-comment-face) ("^ +\\[[^]\n]+]" . font-lock-type-face) ("^\\(?:en\\|ru\\|uk\\|la\\): " . font-lock-type-face)