aboutsummaryrefslogtreecommitdiffstats
path: root/elpa/lsp-mode-20220505.630/lsp-nim.el
blob: c98d5655a420af17c3738cf02fd4ce316d33e891 (plain) (blame)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
;;; lsp-nim.el --- description -*- lexical-binding: t; -*-

;; Copyright (C) 2020 emacs-lsp maintainers

;; Author: emacs-lsp maintainers
;; Keywords: lsp, nim

;; 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 Clients for the Nim Programming Language.

;;; Code:

(require 'lsp-mode)

;; Nim
(defgroup lsp-nimlsp nil
  "LSP support for Nim, using nimlsp."
  :group 'lsp-mode
  :link '(url-link "https://github.com/PMunch/nimlsp"))

(defcustom-lsp lsp-nim-project-mapping []
  "Nimsuggest project mapping. Sample value

[(:projectFile \"root.nim\"
  :fileRegex \".*\\.nim\")]"

  :type '(lsp-repeatable-vector plist)
  :group 'lsp-nim
  :package-version '(lsp-mode . "8.0.1")
  :lsp-path "nim.projectMapping")

(defcustom-lsp lsp-nim-timeout 120000
  "Timeout for restarting `nimsuggest'"
  :type 'number
  :group 'lsp-nim
  :package-version '(lsp-mode . "8.0.1")
  :lsp-path "nim.timeout")

(defcustom-lsp lsp-nim-nimsuggest-path "nimsuggest"
  "Path to `nimsuggest' to use."
  :type 'number
  :group 'lsp-nim
  :package-version '(lsp-mode . "8.0.1")
  :lsp-path "nim.nimsuggestPath")

(defcustom lsp-nim-langserver "nimlangserver"
  "Path to `nimlangserver'"
  :type 'number
  :group 'lsp-nim
  :package-version '(lsp-mode . "8.0.1"))

(lsp-register-client
 (make-lsp-client :new-connection (lsp-stdio-connection "nimlsp")
                  :activation-fn (lsp-activate-on "nim")
                  :priority -1
                  :server-id 'nimls))

(lsp-register-client
 (make-lsp-client :new-connection (lsp-stdio-connection
                                   (lambda () lsp-nim-langserver))
                  :activation-fn (lsp-activate-on "nim")
                  :server-id 'nimlangserver))

(lsp-consistency-check lsp-nim)

(provide 'lsp-nim)
;;; lsp-nim.el ends here