4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

= ale.vimとQuickRunでstack環境を使う

Last updated at Posted at 2019-05-11

デフォルトだとグローバルに存在するghcrunhaskellを使ってしまい、stackで入れたパッケージが使えない。

追記(2019/05/12): ALEの設定はまだうまくいってないかもしれません(ただ単に全てのエラーが表示されなくなった気がする)

ALEの設定

(ALEはリントツール等用のみで使用し、Lspはvim-lspに任せているため使用していません。)
ale_lintersstack-ghcを指定してあげます

let g:ale_linters = {
    \ 'haskell': ['stack-ghc'],
    \ }

また、この時**hie等も同時に指定しない**ようにしてください。自分の環境だと動きませんでした。

QuickRun

g:quickrun_config.haskellを作成し、設定を書き込んでやります。

let g:quickrun_config = {}
let g:quickrun_config.haskell = {'command': 'stack',
                                \'cmdopt': 'runhaskell',
                                \}

ここで**'command': 'stack runhaskell'としない**ことが重要です。
そうした場合、「そんなもんねーよ!」と怒られてしまいます。

[2019-05-11 21:59]

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?