dante icon indicating copy to clipboard operation
dante copied to clipboard

Results 27 dante issues
Sort by recently updated
recently updated
newest added

Am I supposed to use either, can they be combined? I really have no idea, and the internet is sparse on this.

First of all, thanks for Dante, I love it! Makes my love so much easier, and doesn't need any configuration at all for most projects. I have a simple Haskell...

## init.el ```emacs-lisp ;; Haskell IDE (use-package haskell-mode) (use-package dante :after haskell-mode :commands 'dante-mode :init (add-hook 'haskell-mode-hook 'flycheck-mode) (add-hook 'haskell-mode-hook 'dante-mode)) ``` ## Messages ``` Dante: Starting GHCi: nix-shell --pure...

Facing a similar problem as #147 with the [Dhall](https://github.com/dhall-lang/dhall-haskell) package After cloning it, I set `.dir-locals.el` to run the project through the haskell stack: ``` ((nil . ((dante-methods . (stack)))))...

Thanks for the excellent emacs mode. I have a project with the following structure: ``` /home/rodney/dev/myproject ├── .dir-locals.el ├── cabal.project ├── pkga │ ├── pkga.cabal │   ├── Module1.hs │   └──...

I'm getting the following error when activating dante: ``` lcr-process-read: Invalid function: (lcr-resume (cont &rest args) `(lcr--with-context ctx (funcall ,cont ,@args))) ``` Initialized via: ```elisp (use-package dante :ensure t :after...

```bash nix-shell --run "cabal repl --builddir=dist/dante" ``` is hardcoded into `dante`. However, it will not work in a project with multiple targets such as [qfpl applied fp course](https://github.com/qfpl/applied-fp-course). I find...

If the eval block is located at the end of the file, calling `dante-eval-block` on it will result in improper formatting. E.g. evaluating this block ``` -- >>> init "foobar"...

This is my [2nd](https://github.com/jyp/dante/issues/145#issuecomment-596787777) time trying this out, emmigrating from Intero. It seems to install nicely, no errors, but key features aren't working, and no debug information seems to be...

I have a Stack project and in `.dir-locals.el` I have `((nil . ((dante-methods . (stack)))))`. When I load a file first time everything works fine but when I go to...