File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -404,6 +404,13 @@ same vein as `haskell-indent-spaces'."
404
404
:group 'haskell
405
405
:type '(repeat 'string ))
406
406
407
+ ;;;### autoload
408
+ (defcustom haskell-stylish-on-save nil
409
+ " Whether to run stylish-haskell on the buffer before saving.
410
+ If this is true, `haskell-add-import' will not sort or align the
411
+ imports."
412
+ :group 'haskell
413
+ :type 'boolean )
407
414
408
415
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
409
416
; ; Accessor functions
Original file line number Diff line number Diff line change @@ -820,14 +820,6 @@ Note that negative arguments do not work so well."
820
820
(const " ghc -fno-code" )
821
821
(string :tag " Other command" )))
822
822
823
- ;;;### autoload
824
- (defcustom haskell-stylish-on-save nil
825
- " Whether to run stylish-haskell on the buffer before saving.
826
- If this is true, `haskell-add-import' will not sort or align the
827
- imports."
828
- :group 'haskell
829
- :type 'boolean )
830
-
831
823
;;;### autoload
832
824
(defcustom haskell-tags-on-save nil
833
825
" Generate tags via hasktags after saving."
Original file line number Diff line number Diff line change 23
23
(require 'haskell-navigate-imports )
24
24
(require 'haskell-complete-module )
25
25
(require 'haskell-sandbox )
26
+ (require 'haskell-customize )
26
27
27
28
(defun haskell-add-import (&optional module )
28
29
" Add an import to the import list. Sorts and aligns imports,
You can’t perform that action at this time.
0 commit comments