d54e1ae4c7
Resolves #356
7 lines
248 B
EmacsLisp
7 lines
248 B
EmacsLisp
(defun spacemacs/haskell-show-hi2-guides ()
|
|
(when (and (boundp 'hi2-mode) hi2-mode)
|
|
(hi2-enable-show-indentations)))
|
|
|
|
(defun spacemacs/haskell-hide-hi2-guides ()
|
|
(when (and (boundp 'hi2-mode) hi2-mode)
|
|
(hi2-disable-show-indentations)))
|