-
-
Notifications
You must be signed in to change notification settings - Fork 892
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic support for futhark mode (#4556)
* Add basic support for futhark mode * Remove duplicate adding to lsp-language-id-configuration * Add futhark addition to changelog * Add futhark to list of client-packages * Add futhark to docs list * Add documentation group for futhark * Add server installation docs for futhark * N/A → Not available
- Loading branch information
Showing
5 changed files
with
55 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
;;; lsp-futhark.el --- lsp-mode futhark integration -*- lexical-binding: t; -*- | ||
|
||
;; Copyright (C) 2024 lsp-mode maintainers | ||
|
||
;; Keywords: languages | ||
|
||
;; 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: | ||
|
||
;; Client for the futhark language server. | ||
|
||
;;; Code: | ||
|
||
(require 'lsp-mode) | ||
|
||
(defgroup lsp-futhark nil | ||
"LSP support for Futhark, using futhark lsp" | ||
:group 'lsp-mode | ||
:link '(url-link "https://github.com/diku-dk/futhark/tree/master/src/Futhark/LSP") | ||
:package-version `(lsp-mode . "9.0.1")) | ||
|
||
(lsp-register-client | ||
(make-lsp-client :new-connection (lsp-stdio-connection '("futhark" "lsp")) | ||
:activation-fn (lsp-activate-on "futhark") | ||
:server-id 'futhark)) | ||
|
||
(lsp-consistency-check lsp-futhark) | ||
|
||
(provide 'lsp-futhark) | ||
;;; lsp-futhark.el ends here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters