Haskell IDE for Windows? [closed]

巧了我就是萌 提交于 2019-12-17 21:43:14

问题


I really searched on this one. (E/TextMate is the closest I found in this topic, but it doesn't seem to be that big of deal)

I tried emacs, but I don't seem to find a Haskell Mode for Windows.. VisualHaskell doesn't seem to follow the new VisualStudio updates...

I could try VIM, but does the Haskell Mode works for Windows there?

Sigh... All the time the 'close but no cigare' feeling.

Is there actually so out there programming Haskell under Windows?


回答1:


I think the main IDE-ish options for Windows are, in order:

  1. Using Eclipse as your Haskell IDE
  2. Leksah, an integrated IDE for Haskell written in Haskell.
  3. Visual Haskell (unknown recent status)
  4. Vim + Haskell
  5. Emacs + Haskell

I use option 4.




回答2:


Tip for Emacs on Windows:

  • Download ntemacs and extract ntemacs24-bin-xxxxxxxx.7z in your favourite location e.g. D:\
  • Create desktop shortcut for D:\ntemacs24\bin\runemacs.exe and run Emacs
  • Go to C:\Users\UserName\AppData\Roaming\.emacs.d\
  • Create a directory haskell-mode and put in it files: haskell-mode.el, haskell-font-lock.el, haskell-doc.el from Haskell mode for Emacs
  • In ..\emacs.d\ create a file init.el

First 8 lines are optional and depend on the preferences.

(tool-bar-mode -1)
(scroll-bar-mode -1)
(setq-default truncate-lines t)

(setq line-number-mode t)
(setq column-number-mode t)

(set-keyboard-coding-system 'cp1250)
(prefer-coding-system 'windows-1250)

(set-face-attribute 'default nil :font "Consolas-11")

(setq-default indent-tabs-mode nil)
(setq default-tab-width 4)

(load "~/.emacs.d/haskell-mode/haskell-mode")

(add-to-list 'auto-mode-alist '("\\.hs\\'" . haskell-mode))
(add-to-list 'auto-mode-alist '("\\.lhs\\'" . literate-haskell-mode))
(add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)

That's it!

Ps Komodo Edit has syntax support for Haskell.




回答3:


Another option is Sublime Text, which is easily the best general-purpose code editor I've encountered. It generally fills the same niche as Vi/Vim or EMACS, but generally follows modern interface standards, and has some really useful features that I haven't seen in any other editors, such as the minimap and multi-selection (hit ctrl-d with some text selected, and it will select the next instance of the same text, while still keeping the old selection intact, essentially putting your input cursor in two places, so you can edit them both in tandem).

The standard download comes with basic Haskell syntax highlighting. If you want more functionality, there is a plug-in called SublimeHaskell that adds Cabal support for much smarter auto-completion and limited linting. To install that, you first want to install Sublime Package Control (very easy to do, just copy a string from their Installation section into Sublime's internal command-line), restart Sublime, and use the package control to install SublimeHaskell (hit ctrl-shift-p, type "package", select "Package Control: Install Package", then type "haskell" and select "SublimeHaskell", then restart Sublime).

It even has the ability to build from within the editor (Tools -> Build, or ctrl-b). This feature only supports a limited set of languages, but fortunately Haskell is one of them.




回答4:


SublimeText

Sublime Text is a very stylish and comforting editor. It's not an IDE but it can build your project, work with it as a project and is highly customizable. In difference to IDEs it's very lightweight and the "Distraction free" feature is just mindblowing. It is also cross-platform, seamlessly supporting all three major OSs.

After installation of Soda Theme it becomes even more pleasant for the eye.

SublimeHaskell plugin

There is also a third party plugin SublimeHaskell, which enables the editor with in depth support for cabal, linting, autocompletion and stuff like that.

The only thing the SublimeText solution cannot do yet is refactoring, but then again none of the competing solutions can.




回答5:


Emacs works fine on Windows. I used it when I worked with Haskell on Windows. So, that's my recommendation.




回答6:


Visual Haskell works fine for me.




回答7:


Leksah is not bad, install haskell platform, then download the latest Leksah, you're all set. it's not as robust as VS, but it has other qualities which make me enjoy using it, including ease of creating cabal packages, syntax highlighting, auto-completion of function names (they should extend this to syntax as well), function search, etc.




回答8:


Leksah looks very much like a Linux application, you will see it more when you try to open a file. It does not look like a windows native app. Otherwise, its OK. Eclipse is always good but they say on their website that they have Haskell as their foremost thing right now (2/26/2011). I should look at other options too, so far I have also used Notepad++.




回答9:


I did some Haskell back at varsity and I must admit that I used notepad. There wasn't an IDE back then.




回答10:


haskellmode-vim works just fine on Windows -- I use it there. It's my preferred Haskell IDE.

See http://projects.haskell.org/haskellmode-vim/




回答11:


I use notepad++ . It has haskell syntax highlighting, it only needs to switch on haskell tabulation mode (4 spaces instead of tab) in preferences, but it is not a big deal.



来源:https://stackoverflow.com/questions/734309/haskell-ide-for-windows

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!