~ubuntu-branches/ubuntu/maverick/slime/maverick

« back to all changes in this revision

Viewing changes to contrib/README

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2007-10-04 09:09:47 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20071004090947-8oy7djtx8no3erxy
Tags: 1:20070927-2
Readded tree-widget to the sources. emacs21 on
debian does _not_ have that file. emacs22 and xemacs do.
(Closes: #445174)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
This directory contains source code which may be useful to some Slime
 
2
users.  *.el files are Emacs Lisp source and *.lisp files contain
 
3
Common Lisp source code.  If not otherwise stated in the file itself,
 
4
the files are placed in the Public Domain.
 
5
 
 
6
The components in this directory are more or less detached from the
 
7
rest of Slime.  They are essentially "add-ons".  But Slime can also be
 
8
used without them.  The code is maintained by the respective authors.
 
9
 
 
10
To use the packages here, you should add this directory to your Emacs
 
11
load-path.  E.g. for fuzzy completion add this to your .emacs:
 
12
 
 
13
  (add-to-list 'load-path "<this-directory>")
 
14
  (add-hook 'slime-load-hook (lambda () (require 'slime-fuzzy)))
 
15