lsp-v.el (1489B)
1 ;;; lsp-v.el --- lsp-mode V integration -*- lexical-binding: t; -*- 2 3 ;; Copyright (C) 2021 remimimimi 4 5 ;; Author: remimimimi 6 ;; Keywords: languages,tools 7 8 ;; This program is free software; you can redistribute it and/or modify 9 ;; it under the terms of the GNU General Public License as published by 10 ;; the Free Software Foundation, either version 3 of the License, or 11 ;; (at your option) any later version. 12 13 ;; This program is distributed in the hope that it will be useful, 14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of 15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 ;; GNU General Public License for more details. 17 18 ;; You should have received a copy of the GNU General Public License 19 ;; along with this program. If not, see <https://www.gnu.org/licenses/>. 20 21 ;;; Commentary: 22 23 ;; client for vls, the V language server 24 25 ;;; Code: 26 27 (require 'lsp-mode) 28 29 (defgroup lsp-v nil 30 "LSP support for V via vls." 31 :group 'lsp-mode 32 :link '(url-link "https://github.com/vlang/vls/tree/master")) 33 34 (defcustom lsp-v-vls-executable "vls" 35 "The vls executable to use. 36 Leave as just the executable name to use the default behavior of 37 finding the executable with variable `exec-path'." 38 :group 'lsp-v 39 :type 'string) 40 41 (lsp-register-client 42 (make-lsp-client 43 :new-connection (lsp-stdio-connection (lambda () lsp-v-vls-executable)) 44 :activation-fn (lsp-activate-on "V") 45 :server-id 'v-ls)) 46 47 (lsp-consistency-check lsp-v) 48 49 (provide 'lsp-v) 50 ;;; lsp-v.el ends here