diff --git a/Eask b/Eask index 68b05e5..8f325c3 100644 --- a/Eask +++ b/Eask @@ -9,6 +9,9 @@ (source "gnu") (source "melpa") +(website-url "https://github.com/emacs-lsp/lsp-treemacs") +(keywords "languages") + (depends-on "emacs" "26.1") (depends-on "dash") (depends-on "f") diff --git a/lsp-treemacs.el b/lsp-treemacs.el index 98eec7f..44e3630 100644 --- a/lsp-treemacs.el +++ b/lsp-treemacs.el @@ -650,7 +650,8 @@ will be rendered an empty line between them." ;;;###autoload (define-minor-mode lsp-treemacs-sync-mode - "Global minor mode for synchronizing lsp-mode workspace folders and treemacs projects." + "Global minor mode for synchronizing lsp-mode workspace folders +and treemacs projects." :init-value nil :group 'lsp-treemacs :global t @@ -981,7 +982,8 @@ depending on if a custom mode line is detected." ;;;###autoload (defun lsp-treemacs-references (arg) "Show the references for the symbol at point. -With a prefix argument, select the new window and expand the tree of references automatically." +With a prefix argument, select the new window and expand the tree +of references automatically." (interactive "P") (lsp-treemacs--do-search "textDocument/references" `(:context (:includeDeclaration t) ,@(lsp--text-document-position-params)) @@ -991,7 +993,8 @@ With a prefix argument, select the new window and expand the tree of references ;;;###autoload (defun lsp-treemacs-implementations (arg) "Show the implementations for the symbol at point. -With a prefix argument, select the new window expand the tree of implementations automatically." +With a prefix argument, select the new window expand the tree of +implementations automatically." (interactive "P") (lsp-treemacs--do-search "textDocument/implementation" (lsp--text-document-position-params)