Skip to content

Remove cabal-ghci #486 #768

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 20, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions haskell-customize.el
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Used for locating additional package data files.")
(defcustom haskell-process-type
'auto
"The inferior Haskell process type to use."
:type '(choice (const auto) (const ghci) (const cabal-repl) (const cabal-ghci) (const stack-ghci))
:type '(choice (const auto) (const ghci) (const cabal-repl) (const stack-ghci))
:group 'haskell-interactive)

(defcustom haskell-process-wrapper-function
Expand Down Expand Up @@ -104,12 +104,6 @@ when showing type information about symbols."
:group 'haskell-interactive
:type '(choice string (repeat string)))

(defcustom haskell-process-path-cabal-ghci
"cabal-ghci"
"The path for starting cabal-ghci."
:group 'haskell-interactive
:type '(choice string (repeat string)))

(defcustom haskell-process-path-stack
"stack"
"The path for starting stack."
Expand Down
7 changes: 0 additions & 7 deletions haskell-process.el
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,6 @@ HPTYPE is the result of calling `'haskell-process-type`' function."
haskell-process-args-cabal-repl
(let ((target (haskell-session-target session)))
(if target (list target) nil)))))))
('cabal-ghci
(append (list (format "Starting inferior cabal-ghci process using %s ..."
haskell-process-path-cabal-ghci)
session-name
nil)
(apply haskell-process-wrapper-function
(list (list haskell-process-path-cabal-ghci)))))
('stack-ghci
(append (list (format "Starting inferior stack GHCi process using %s" haskell-process-path-stack)
session-name
Expand Down