lsp-mojo.el (1551B)
1 ;;; lsp-mojo.el --- lsp-mode Mojo integration -*- lexical-binding: t; -*- 2 3 ;; Copyright (C) 2023 Adam Liter 4 5 ;; Author: Adam Liter <io@adamliter.org> 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 Mojo 🔥 24 25 ;;; Code: 26 27 (require 'lsp-mode) 28 29 (defgroup lsp-mojo nil 30 "LSP support for Mojo 🔥, using mojo-lsp-server." 31 :group 'lsp-mode 32 :link '(url-link "https://github.com/modularml/mojo")) 33 34 (defcustom lsp-mojo-executable "mojo-lsp-server" 35 "The Mojo 🔥 LSP 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-mojo 39 :type 'string) 40 41 (lsp-register-client 42 (make-lsp-client 43 :new-connection (lsp-stdio-connection (lambda () lsp-mojo-executable)) 44 :activation-fn (lsp-activate-on "mojo") 45 :server-id 'mojo)) 46 47 (lsp-consistency-check lsp-mojo) 48 49 (provide 'lsp-mojo) 50 ;;; lsp-mojo.el ends here