mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-06 02:30:33 -08:00
fix(default): 'wrong-type-argument: consp' in haskell-mode
Seems `sp-local-pair`s `:actions` property no longer takes `:rem`.
This commit is contained in:
parent
5ca9b7a37a
commit
45546ea25d
1 changed files with 3 additions and 3 deletions
|
|
@ -261,9 +261,9 @@ or if the current buffer is read-only or not file-visiting."
|
|||
;; Removes haskell-mode trailing braces
|
||||
(after! smartparens-haskell
|
||||
(sp-with-modes '(haskell-mode haskell-ts-mode haskell-interactive-mode)
|
||||
(sp-local-pair "{-" "-}" :actions :rem)
|
||||
(sp-local-pair "{-#" "#-}" :actions :rem)
|
||||
(sp-local-pair "{-@" "@-}" :actions :rem)
|
||||
(sp-local-pair "{-" "-}" :actions nil)
|
||||
(sp-local-pair "{-#" "#-}" :actions nil)
|
||||
(sp-local-pair "{-@" "@-}" :actions nil)
|
||||
(sp-local-pair "{-" "-")
|
||||
(sp-local-pair "{-#" "#-")
|
||||
(sp-local-pair "{-@" "@-")))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue