* (WIP) add speedbar support (thanks to Antono V)

This commit is contained in:
djcb
2012-03-19 21:45:26 +02:00
parent f43f704429
commit bd0573f3db
4 changed files with 114 additions and 8 deletions

View File

@ -840,6 +840,7 @@ with other tools.
* Creating org-mode links::
* Maintaining an address-book with org-contacts::
* Getting new mail notifications with Sauron::
* Speedbar support::
@end menu
@node Creating org-mode links
@ -926,6 +927,24 @@ Note, you should put something like:
@end lisp
in your setup, which allows the script to find the D-Bus session bus.
@node Speedbar support
@section Speedbar support (experimental)
@code{speedbar} is an emacs-extension that shows navigational information for
an emacs buffer in a separate frame. Using @code{mu4e-speedbar}, @t{mu4e}
lists your maildir folders and allows for one-click access to them.
You can set it up like this in your emacs configuration:
@lisp
(require 'speedbar)
(require 'mu4e-speedbar)
@end lisp
You can then activate it with @code{M-x speedbar}.
@code{mu4e-speedbar} was contributed by Antono Vasiljev.
@node Example configuration