blue-sky
blue-sky

Reputation: 53806

How to launch atom installed package - haskell repl and cabal

Have installed Haskell atom repl from https://atom.io/packages/ide-haskell-repl and also installed cabal package.

How to launch the repl and cabal ?

There does not appear to be an option to open from menu, in same way SublimeText exposes installed packages. Atom probably exposes this functionality differently ?

Here my installed Haskell packages :

enter image description here

Upvotes: 1

Views: 328

Answers (1)

idleberg
idleberg

Reputation: 12882

The Haskell REPL package does not provide a graphical interface for the commands it provides. However, you can call them from the Command Palette, one of the central interfaces of editors such as Atom or Sublime Text.

Launch the command palette using the default shortcut (Cmd+Shift+P on OS X, Ctrl+Shift+P elsewhere) or from the menu (Packages > Command Palette > Toggle) and type any of the commands mentioned in the package's README.md. The command palette will also reveal the default keyboard shortcuts for each command.

Upvotes: 1

Related Questions