Skip to content

Commit

Permalink
Proposed fix for #116 (#461)
Browse files Browse the repository at this point in the history
- use highlight face altered with italic/underline
  • Loading branch information
yyoncho authored Oct 30, 2018
1 parent 08f5c0c commit 856ab6a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions lsp-methods.el
Original file line number Diff line number Diff line change
Expand Up @@ -405,22 +405,19 @@ before saving a document."

;;;###autoload
(defface lsp-face-highlight-textual
'((((background dark)) :background "saddle brown")
(((background light)) :background "yellow"))
'((t :inherit highlight))
"Face used for textual occurances of symbols."
:group 'lsp-faces)

;;;###autoload
(defface lsp-face-highlight-read
'((((background dark)) :background "firebrick")
(((background light)) :background "red"))
'((t :inherit highlight :underline t))
"Face used for highlighting symbols being read."
:group 'lsp-faces)

;;;###autoload
(defface lsp-face-highlight-write
'((((background dark)) :background "sea green")
(((background light)) :background "green"))
'((t :inherit highlight :italic t))
"Face used for highlighting symbols being written to."
:group 'lsp-faces)

Expand Down

0 comments on commit 856ab6a

Please sign in to comment.