What is the easiest way to use Gambit with Emacs? Are there other IDE's used with Gambit? Thanks, Steve
Afficher les réponses par date
My bad. I followed the instructions in the user manual to add the following to .emacs (autoload 'gambit-inferior-mode "gambit" "Hook Gambit mode into cmuscheme.") (autoload 'gambit-mode "gambit" "Hook Gambit mode into scheme.") (add-hook 'inferior-scheme-mode-hook (function gambit-inferior-mode)) (add-hook 'scheme-mode-hook (function gambit-mode)) (setq scheme-program-name "gsi -:d-") I then started emacs, then entered Alt-x run-scheme . The system came back with Cannot open load file: gambit Any thoughts? I'm on a Windows 7x64 box using Emacs 23.3.1 and Gambit 4.6.1 TIA, Steve --- On Tue, 6/7/11, Steve Graham <jsgrahamus@yahoo.com> wrote:
From: Steve Graham <jsgrahamus@yahoo.com> Subject: [gambit-list] Gambit and Emacs To: "Gambit List" <Gambit-list@iro.umontreal.ca> Date: Tuesday, June 7, 2011, 1:04 PM What is the easiest way to use Gambit with Emacs? Are there other IDE's used with Gambit?
Thanks, Steve _______________________________________________ Gambit-list mailing list Gambit-list@iro.umontreal.ca https://webmail.iro.umontreal.ca/mailman/listinfo/gambit-list
Adding the following lines to the top of the file fixed it: (setq Info-default-directory-list (append Info-default-directory-list '("C:/gambit/v4.6.1/info"))) (setq load-path (cons "C:/gambit/v4.6.1/share/emacs/site-lisp" load-path)) --- On Tue, 6/7/11, Steve Graham <jsgrahamus@yahoo.com> wrote:
From: Steve Graham <jsgrahamus@yahoo.com> Subject: Re: [gambit-list] Gambit and Emacs To: "Gambit List" <Gambit-list@iro.umontreal.ca> Date: Tuesday, June 7, 2011, 2:54 PM My bad.
I followed the instructions in the user manual to add the following to .emacs
(autoload 'gambit-inferior-mode "gambit" "Hook Gambit mode into cmuscheme.") (autoload 'gambit-mode "gambit" "Hook Gambit mode into scheme.") (add-hook 'inferior-scheme-mode-hook (function gambit-inferior-mode)) (add-hook 'scheme-mode-hook (function gambit-mode)) (setq scheme-program-name "gsi -:d-")
I then started emacs, then entered Alt-x run-scheme . The system came back with
Cannot open load file: gambit
Any thoughts?
I'm on a Windows 7x64 box using Emacs 23.3.1 and Gambit 4.6.1
TIA, Steve
--- On Tue, 6/7/11, Steve Graham <jsgrahamus@yahoo.com> wrote:
From: Steve Graham <jsgrahamus@yahoo.com> Subject: [gambit-list] Gambit and Emacs To: "Gambit List" <Gambit-list@iro.umontreal.ca> Date: Tuesday, June 7, 2011, 1:04 PM What is the easiest way to use Gambit with Emacs? Are there other IDE's used with Gambit?
Thanks, Steve _______________________________________________ Gambit-list mailing list Gambit-list@iro.umontreal.ca https://webmail.iro.umontreal.ca/mailman/listinfo/gambit-list
_______________________________________________ Gambit-list mailing list Gambit-list@iro.umontreal.ca https://webmail.iro.umontreal.ca/mailman/listinfo/gambit-list
participants (1)
-
Steve Graham