Difference between revisions of "Geiser"

From WikEmacs
Jump to navigation Jump to search
(anh em Ta cung nhau xem nha)
m (Reverted edits by 37.59.80.67 (talk) to last revision by Bozhidar)
 
Line 1: Line 1:
Hello my friend heres my new gig easy as it looks Ill send u a total of 5350++ backlinks to your website in 2 tiers. This gig its for 1 website and up to 5 keywords. First tier to your main website 350 page rank 1-5 and the the second tier of 5000 profile backlinks pointing to your first tier.Ill send u a report in a txt file in less than 48 hours.Any question just send me a private message
+
'''Geiser''' is a collection of Emacs major and minor mode, that can help Emacs to communicate to a foreign Scheme interpreter. It provides [[SLIME]]-like support for [[Racket]] and [[Guile]].  
 +
 
 +
== Basic setup ==
 +
 
 +
Example config may look like this:
 +
<syntaxhighlight lang="lisp">
 +
(defun turn-on-parenthesis-goodies () (rainbow-delimiters-mode 1) (paredit-mode 1))
 +
(add-hook 'scheme-mode-hook 'turn-on-parenthesis-goodies)
 +
(load-file "C:/path-to-geiser/elisp/geiser.el")
 +
(setq geiser-active-implementations '(racket))
 +
(setq geiser-racket-binary "C:/path-to-racket/racket.exe")
 +
(require 'quack)
 +
</syntaxhighlight>
 +
 
 +
== See Also ==
 +
 
 +
* [[Quack]]
 +
* [[Scheme-mode]]

Latest revision as of 19:39, 24 June 2012

Geiser is a collection of Emacs major and minor mode, that can help Emacs to communicate to a foreign Scheme interpreter. It provides SLIME-like support for Racket and Guile.

Basic setup

Example config may look like this:

(defun turn-on-parenthesis-goodies () (rainbow-delimiters-mode 1) (paredit-mode 1))
(add-hook 'scheme-mode-hook 'turn-on-parenthesis-goodies)
(load-file "C:/path-to-geiser/elisp/geiser.el")
(setq geiser-active-implementations '(racket))
(setq geiser-racket-binary "C:/path-to-racket/racket.exe")
(require 'quack)

See Also