-
Notifications
You must be signed in to change notification settings - Fork 34
/
lsp-metals-protocol.el
48 lines (37 loc) · 1.97 KB
/
lsp-metals-protocol.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
;;; lsp-metals-protocol.el --- LSP Metals custom protocol definitions -*- lexical-binding: t; -*-
;; Copyright (C) 2020 Evgeny Kurnevsky <[email protected]>
;; Version: 1.0.0
;; Author: Evgeny Kurnevsky <[email protected]>
;; Keywords: languages, extensions
;; URL: https://github.com/emacs-lsp/lsp-metals
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; lsp-metals custom protocol definitions
;;; Code:
(require 'lsp-protocol)
(lsp-interface
(PublishDecorationsParams (:uri :options) nil)
(MetalsStatusParams (:text) (:show :hide :tooltip :command))
(MetalsQuickPickParams (:items) (:matchOnDescription :matchOnDetail :placeHolder :ignoreFocusOut))
(MetalsQuickPickItem (:id :label) (:description :detail :alwaysShow))
(MetalsInputBoxParams (:prompt) (:value :placeHolder :password :ignoreFocusOut))
(DecorationOptions (:range :renderOptions) (:hoverMessage))
(ThemableDecorationInstanceRenderOption nil (:after))
(ThemableDecorationAttachmentRenderOptions nil (:contentText :color :fontStyle))
(DebugSession (:name :uri) nil)
(TreeViewNode (:viewId :label) (:nodeUri :command :icon :tooltip :collapseState))
(TreeViewCommand (:title :command) (:tooltip :arguments))
(TreeViewChildrenResult (:nodes) nil)
(TreeViewDidChangeParams (:nodes) nil)
(TreeViewRevealResult (:viewId :uriChain) nil))
(provide 'lsp-metals-protocol)
;;; lsp-metals-protocol.el ends here