Go to the first, previous, next, last section, table of contents.


dired-dd(Dired-DragDrop)

dired-dd パッケージに含まれる `dired-dd-mime.el' を組み込めば、GNU Emacs で編集中の草稿バッファへ dired からドラッグ&ドロップするだけで簡単 にマルチパートを作成できます(もっとも、Wanderlust 専用ではなく SEMI 汎用 ですが)。

;; dired-dd: http://www.asahi-net.or.jp/~pi9s-nnb/dired-dd-home.html
(add-hook 'dired-load-hook
          (function
           (lambda ()
             (load "dired-x")
             ;; Set dired-x variables here.
             ;; To and flo...
             (if window-system
                 (progn (require 'dired-dd)
                        (require 'dired-dd-mime))))))


Go to the first, previous, next, last section, table of contents.