* automatically load mu4e-speedbar

This commit is contained in:
djcb 2012-03-28 22:23:35 +03:00
parent 87e70a5b5a
commit 9867349314
2 changed files with 13 additions and 20 deletions

View File

@ -28,11 +28,13 @@
(eval-when-compile (require 'cl))
(require 'mu4e-hdrs)
(require 'mu4e-view)
(require 'mu4e-main)
(require 'mu4e-send)
(require 'mu4e-proc)
(require 'mu4e-hdrs) ;; headers view
(require 'mu4e-view) ;; message view
(require 'mu4e-main) ;; main screen
(require 'mu4e-send) ;; editing / sending
(require 'mu4e-proc) ;; communication with backend
(require 'mu4e-speedbar) ;; support for speedbar
;; mu4e-version.el is autogenerated, and defines mu4e-mu-version
(require 'mu4e-version)

View File

@ -950,25 +950,16 @@ in your setup, which allows the script to find the D-Bus session bus.
@section Speedbar support
@code{speedbar} is an emacs-extension that shows navigational information for
an emacs buffer in a separate frame.
an emacs buffer in a separate frame. Using @code{mu4e-speedbar}, @t{mu4e}
lists your bookmarks and maildir folders and allows for one-click access to
them.
Using @code{mu4e-speedbar}, @t{mu4e} lists your bookmarks and maildir folders
and allows for one-click access to them.
You can set it up by putting something like the following in your @t{emacs}
configuration file:
@lisp
(require 'speedbar)
(require 'mu4e-speedbar)
@end lisp
You can then activate it with @code{M-x speedbar}. When then going to the
@ref{Main view}, the speedbar-frame will be updated with your bookmarks and
maildirs.
@t{mu4e} loads @t{mu4e-speedbar} automatically; all you need to do to activate
it is @code{M-x speedbar}. Then, when then going to the @ref{Main view}, the
speedbar-frame will be updated with your bookmarks and maildirs.
@code{mu4e-speedbar} was contributed by Antono Vasiljev.
@node Example configuration
@chapter Example configuration