branch: elpa/haskell-tng-mode commit 85c4dd53e3a463a8a5b3b76f0898f15cb76b6cc6 Author: Tseen She <ts33n....@gmail.com> Commit: Tseen She <ts33n....@gmail.com>
fix bugfix in goto-import --- haskell-tng-contrib.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haskell-tng-contrib.el b/haskell-tng-contrib.el index 25fa70c..00a42ce 100644 --- a/haskell-tng-contrib.el +++ b/haskell-tng-contrib.el @@ -39,7 +39,7 @@ "Hack to jump to imports" ;; TODO imenu navigation will replace this (interactive) - (re-search-backward (rx line-start "import"))) + (re-search-backward (rx line-start "import" word-end))) ;;;###autoload (defun haskell-tng-current-module ()