File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 115
115
116
116
(defun lsp-ivy--format-symbol-match (symbol-information-match )
117
117
" Convert the match returned by `lsp-mode` into a candidate string.
118
- SYMBOL-INFORMATION-MATCH is a cons cell whose cdr is the hash-table from `lsp-mode`."
118
+ SYMBOL-INFORMATION-MATCH is a cons cell whose cdr is the SymbolInformation interface from `lsp-mode`."
119
119
(-let* (((&SymbolInformation :name :kind :container-name? ) (cdr symbol-information-match))
120
120
(type (elt lsp-ivy-symbol-kind-to-face kind))
121
121
(typestr (if lsp-ivy-show-symbol-kind
@@ -126,7 +126,7 @@ SYMBOL-INFORMATION-MATCH is a cons cell whose cdr is the hash-table from `lsp-mo
126
126
(format " %s .%s " container-name? name)))))
127
127
128
128
(defun lsp-ivy--workspace-symbol-action (symbol-information-candidate )
129
- " Jump to selected SYMBOL-INFORMATION-CANDIDATE, a cons cell whose cdr is a hash table ."
129
+ " Jump to selected SYMBOL-INFORMATION-CANDIDATE, a cons cell whose cdr is a a SymbolInformation ."
130
130
(-let (((&SymbolInformation :location
131
131
(&Location :uri
132
132
:range
You can’t perform that action at this time.
0 commit comments