File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
(package "lsp-haskell"
2
- "1.0 "
2
+ "1.1 "
3
3
"Haskell support for lsp-mode")
4
4
5
5
(website-url "https://github.com/emacs-lsp/lsp-haskell")
14
14
15
15
(depends-on "emacs" "24.3")
16
16
(depends-on "lsp-mode")
17
+ (depends-on "haskell-mode")
17
18
18
19
(development
19
20
(depends-on "f")
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ Do not skip this!
23
23
It has important information.
24
24
25
25
` lsp-mode ` automatically requires the ` lsp-haskell ` package , so you do not need to ` require ` ` lsp-haskell ` unless you like being explicit.
26
+ Similarly, ` lsp-haskell ` automatically requires the ` haskell-mode ` package, so you do not need to ` require ` ` haskell-mode ` .
26
27
27
28
You will need to set some hooks to ensure that ` lsp-mode ` is triggered when the ` haskell-mode ` major mode is entered.
28
29
Original file line number Diff line number Diff line change 1
1
; ;; lsp-haskell.el --- Haskell support for lsp-mode
2
2
3
- ; ; Version: 1.0
4
- ; ; Package-Requires: ((emacs "24.3") (lsp-mode "3.0"))
3
+ ; ; Version: 1.1
4
+ ; ; Package-Requires: ((emacs "24.3") (lsp-mode "3.0") (haskell-mode "16.1") )
5
5
; ; Keywords: haskell
6
6
; ; URL: https://github.com/emacs-lsp/lsp-haskell
7
7
29
29
; ;; Code:
30
30
31
31
(require 'lsp-mode )
32
+ (require 'haskell-mode )
32
33
33
34
; ; ---------------------------------------------------------------------
34
35
; ; Configuration
You can’t perform that action at this time.
0 commit comments