"err"という文字列をハイライトする(Emacs編)
"err"という文字列をHighlightしておくとGolangのコードリーディングが捗る - ( ꒪⌓꒪) ゆるよろ日記
コード
(font-lock-add-keywords 'go-mode '(("\\b\\(err\\)\\b" 1 '((:foreground "yellow") (:weight bold)) t)))
"err"という文字列をHighlightしておくとGolangのコードリーディングが捗る - ( ꒪⌓꒪) ゆるよろ日記
(font-lock-add-keywords 'go-mode '(("\\b\\(err\\)\\b" 1 '((:foreground "yellow") (:weight bold)) t)))