branch: elpa/haskell-ts-mode commit 17b8467dfd1f13e234e849f9349d37f8fb5764fb Author: Pranshu Sharma <pran...@bauherren.ovh> Commit: Pranshu Sharma <pran...@bauherren.ovh>
Yet another indentation fix Fixing indentation for operators --- haskell-ts-mode.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/haskell-ts-mode.el b/haskell-ts-mode.el index 45ff024812..5a08ccac09 100644 --- a/haskell-ts-mode.el +++ b/haskell-ts-mode.el @@ -5,7 +5,7 @@ ;; Author: Pranshu Sharma <pran...@bauherren.ovh> ;; URL: https://codeberg.org/pranshu/haskell-ts-mode ;; Package-Requires: ((emacs "29.3")) -;; Version: 1.2.2 +;; Version: 1.2.3 ;; Keywords: languages, haskell ;; This program is free software; you can redistribute it and/or modify @@ -288,7 +288,8 @@ when `haskell-ts-prettify-words' is non-nil.") (setq first-inf node)) (funcall ,parent-first-child nil first-inf nil))) 0) - ((node-is "^infix$") ,parent-first-child 0) + ((parent-is "^infix$") parent 0) + ((node-is "^infix$") standalone-parent 2) ;; Lambda ((parent-is "^lambda$") standalone-parent 2)