We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37ccb8e commit 05cbb94Copy full SHA for 05cbb94
lsp-mode.el
@@ -5687,6 +5687,10 @@ perform the request synchronously."
5687
(display-action . ,display-action))))
5688
(xref--show-xrefs xrefs display-action)))
5689
5690
+(cl-defmethod seq-empty-p ((ht hash-table))
5691
+ "Function `seq-empty-p' for hash-table."
5692
+ (hash-table-empty-p ht))
5693
+
5694
(cl-defun lsp-find-locations (method &optional extra &key display-action references?)
5695
"Send request named METHOD and get cross references of the symbol under point.
5696
EXTRA is a plist of extra parameters.
0 commit comments