branch: elpa/haskell-tng-mode commit fb9174dab6135e7c0cf2018f1f39fd2c6ff2243d Author: Tseen She <ts33n....@gmail.com> Commit: Tseen She <ts33n....@gmail.com>
removing popup is futile --- haskell-tng-hsinspect.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/haskell-tng-hsinspect.el b/haskell-tng-hsinspect.el index 87daf28..522f43e 100644 --- a/haskell-tng-hsinspect.el +++ b/haskell-tng-hsinspect.el @@ -16,11 +16,12 @@ (require 'subr-x) +;; Popups are not supported in stock Emacs so an extension is necessary: +;; https://emacs.stackexchange.com/questions/53373 +;; +;; `x-show-tip' looks horrible and has no way to control when the popup closes. +;; `x-popup-menu' looks horrible and is incredibly complicated. (require 'popup) -;; FIXME remove the dependency on third party "popup". Unfortunately this is -;; blocked on Emacs shipping with a usable menu and tooltip library. -;; `tooltip-show' and `popup-menu' are mouse centric whereas we need `point' -;; centric. https://emacs.stackexchange.com/questions/53373 (require 'haskell-tng-compile) (require 'haskell-tng-util)