You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'g getting the following message, if I try to enter a new-line near that region where I got this error
haskell-indentation-skip-token: Stack overflow in regexp matcher.
I'm able to edit in other places in the same file.
My haskell-mode related .emacs config
(custom-set-variables;; custom-set-variables was added by Custom.;; If you edit it by hand, you could mess it up, so be careful.;; Your init file should contain only one such instance.;; If there is more than one, they won't work right.
'(custom-enabled-themes (quote (manoj-dark)))
'(haskell-font-lock-symbols (quote unicode))
;; '(haskell-mode-hook (quote (turn-on-haskell-indentation (lambda nil (ghc-init)))))
'(haskell-process-auto-import-loaded-modules t)
'(haskell-process-log t)
'(haskell-process-suggest-remove-import-lines t)
'(haskell-process-type (quote cabal-repl))
'(haskell-stylish-on-save t)
'(haskell-tags-on-save t)
'(initial-buffer-choicet)
'(package-archives (quote (("melpa-stable"."http://stable.melpa.org/packages/") ("marmalade"."http://marmalade-repo.org/packages/") ("gnu"."http://elpa.gnu.org/packages/")))))
(custom-set-faces;; custom-set-faces was added by Custom.;; If you edit it by hand, you could mess it up, so be careful.;; Your init file should contain only one such instance.;; If there is more than one, they won't work right.
)
;; HASKELL MODE
(eval-after-load"haskell-mode"
'(progn
(define-key haskell-mode-map (kbd"C-,") 'haskell-move-nested-left)
(define-key haskell-mode-map (kbd"C-.") 'haskell-move-nested-right)
(define-key haskell-mode-map (kbd"C-c C-c") 'haskell-compile)
;; (define-key haskell-cabal-mode-map (kbd "C-c C-c") 'haskell-compile)
(define-key haskell-mode-map [f8] 'haskell-navigate-imports)
(define-key haskell-mode-map (kbd"M-.") 'haskell-mode-jump-to-def-or-tag)
(define-key haskell-mode-map (kbd"C-x C-d") nil)
(define-key haskell-mode-map (kbd"C-c C-z") 'haskell-interactive-switch)
(define-key haskell-mode-map (kbd"C-c C-l") 'haskell-process-load-file)
(define-key haskell-mode-map (kbd"C-c C-b") 'haskell-interactive-switch)
(define-key haskell-mode-map (kbd"C-c C-t") 'haskell-process-do-type)
(define-key haskell-mode-map (kbd"C-c C-i") 'haskell-process-do-info)
(define-key haskell-mode-map (kbd"C-c M-.") nil)
(define-key haskell-mode-map (kbd"C-c C-d") nil)
(define-key haskell-mode-map (kbd"C-c v c") 'haskell-cabal-visit-file)))
(add-hook'haskell-mode-hook'turn-on-haskell-indentation)
(add-hook'haskell-mode-hook'haskell-auto-insert-module-template)
(add-hook'align-load-hook (lambda ()
(add-to-list'align-rules-list
'(haskell-types
(regexp ."\\(\\s-+\\)\\(::\\|∷\\)\\s-+")
(modes quote (haskell-mode literate-haskell-mode))))
(add-to-list'align-rules-list
'(haskell-assignment
(regexp ."\\(\\s-+\\)=\\s-+")
(modes quote (haskell-mode literate-haskell-mode))))
(add-to-list'align-rules-list
'(haskell-arrows
(regexp ."\\(\\s-+\\)\\(->\\|→\\)\\s-+")
(modes quote (haskell-mode literate-haskell-mode))))
(add-to-list'align-rules-list
'(haskell-left-arrows
(regexp ."\\(\\s-+\\)\\(<-\\|←\\)\\s-+")
(modes quote (haskell-mode literate-haskell-mode))))))
The text was updated successfully, but these errors were encountered:
I'g getting the following message, if I try to enter a new-line near that region where I got this error
haskell-indentation-skip-token: Stack overflow in regexp matcher.
I'm able to edit in other places in the same file.
My haskell-mode related .emacs config
The text was updated successfully, but these errors were encountered: