Skip to content

Commit 45c3c3f

Browse files
Merge pull request #22 from jcs-PR/minor-etc
Minor changes for organizing project
2 parents 20cac62 + c2bb3ac commit 45c3c3f

File tree

2 files changed

+30
-28
lines changed

2 files changed

+30
-28
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# ignore these extensions
2+
*.elc

lsp-ivy.el

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
;;; Commentary:
2727

2828
;; This package provides an interactive ivy interface to the workspace symbol
29-
;; functionality offered by lsp-mode. For an alternative implementation based on
29+
;; functionality offered by lsp-mode. For an alternative implementation based on
3030
;; helm, see https://github.com/emacs-lsp/helm-lsp
3131

3232
;;; Code:
@@ -60,33 +60,33 @@
6060
:type '(repeat integer))
6161

6262
(defcustom lsp-ivy-symbol-kind-to-face
63-
[(" " . nil) ;; Unknown - 0
64-
("File" . font-lock-builtin-face) ;; File - 1
65-
("Modu" . font-lock-keyword-face) ;; Module - 2
66-
("Nmsp" . font-lock-keyword-face) ;; Namespace - 3
67-
("Pack" . font-lock-keyword-face) ;; Package - 4
68-
("Clss" . font-lock-type-face) ;; Class - 5
69-
("Meth" . font-lock-function-name-face) ;; Method - 6
70-
("Prop" . font-lock-constant-face) ;; Property - 7
71-
("Fld " . font-lock-constant-face) ;; Field - 8
72-
("Cons" . font-lock-function-name-face) ;; Constructor - 9
73-
("Enum" . font-lock-type-face) ;; Enum - 10
74-
("Intf" . font-lock-type-face) ;; Interface - 11
75-
("Func" . font-lock-function-name-face) ;; Function - 12
76-
("Var " . font-lock-variable-name-face) ;; Variable - 13
77-
("Cnst" . font-lock-constant-face) ;; Constant - 14
78-
("Str " . font-lock-string-face) ;; String - 15
79-
("Num " . font-lock-builtin-face) ;; Number - 16
80-
("Bool " . font-lock-builtin-face) ;; Boolean - 17
81-
("Arr " . font-lock-builtin-face) ;; Array - 18
82-
("Obj " . font-lock-builtin-face) ;; Object - 19
83-
("Key " . font-lock-constant-face) ;; Key - 20
84-
("Null" . font-lock-builtin-face) ;; Null - 21
85-
("EmMm" . font-lock-constant-face) ;; EnumMember - 22
86-
("Srct" . font-lock-type-face) ;; Struct - 23
87-
("Evnt" . font-lock-builtin-face) ;; Event - 24
88-
("Op " . font-lock-function-name-face) ;; Operator - 25
89-
("TPar" . font-lock-type-face)] ;; TypeParameter - 26
63+
[(" " . nil) ; Unknown - 0
64+
("File" . font-lock-builtin-face) ; File - 1
65+
("Modu" . font-lock-keyword-face) ; Module - 2
66+
("Nmsp" . font-lock-keyword-face) ; Namespace - 3
67+
("Pack" . font-lock-keyword-face) ; Package - 4
68+
("Clss" . font-lock-type-face) ; Class - 5
69+
("Meth" . font-lock-function-name-face) ; Method - 6
70+
("Prop" . font-lock-constant-face) ; Property - 7
71+
("Fld " . font-lock-constant-face) ; Field - 8
72+
("Cons" . font-lock-function-name-face) ; Constructor - 9
73+
("Enum" . font-lock-type-face) ; Enum - 10
74+
("Intf" . font-lock-type-face) ; Interface - 11
75+
("Func" . font-lock-function-name-face) ; Function - 12
76+
("Var " . font-lock-variable-name-face) ; Variable - 13
77+
("Cnst" . font-lock-constant-face) ; Constant - 14
78+
("Str " . font-lock-string-face) ; String - 15
79+
("Num " . font-lock-builtin-face) ; Number - 16
80+
("Bool " . font-lock-builtin-face) ; Boolean - 17
81+
("Arr " . font-lock-builtin-face) ; Array - 18
82+
("Obj " . font-lock-builtin-face) ; Object - 19
83+
("Key " . font-lock-constant-face) ; Key - 20
84+
("Null" . font-lock-builtin-face) ; Null - 21
85+
("EmMm" . font-lock-constant-face) ; EnumMember - 22
86+
("Srct" . font-lock-type-face) ; Struct - 23
87+
("Evnt" . font-lock-builtin-face) ; Event - 24
88+
("Op " . font-lock-function-name-face) ; Operator - 25
89+
("TPar" . font-lock-type-face)] ; TypeParameter - 26
9090
"A vector of 26 cons cells, where the ith cons cell contains the string representation and face to use for the i+1th SymbolKind (defined in the LSP)."
9191
:group 'lsp-ivy
9292
:type '(vector

0 commit comments

Comments
 (0)