X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=remoteusage.mdwn;h=6492ddedc01efcbd6c9191b39e05241995ed873f;hb=9e7222968ee53eb751de40f4dee571684b483fcf;hp=15b5118b10c6125bb8bed6c5094076909611650a;hpb=db37a8336d3335cbbefb3705ff1aebd7ab04bf5e;p=notmuch-wiki diff --git a/remoteusage.mdwn b/remoteusage.mdwn index 15b5118..6492dde 100644 --- a/remoteusage.mdwn +++ b/remoteusage.mdwn @@ -54,7 +54,7 @@ be necessary in the furture. USER="user_name" SSH_HOST="server_name" NOTMUCH_REMOTE_BIN="/path/to/notmuch/on/server" - CACHE=${HOME}/.notmuch-cache.d + CACHE="${HOME}/.notmuch-cache.d" notmuch_run () { @@ -120,9 +120,11 @@ message text. (defun notmuch-show-get-filename () (let* ((orig-filename (notmuch-show-get-prop :filename)) - (retvalue (shell-command-to-string (concat notmuch-command - " --get " - orig-filename)))) + (retvalue (progn + (message "Downloading... ") + (shell-command-to-string (concat notmuch-command + " --get " + orig-filename))))) (replace-regexp-in-string "\n" "" retvalue))) This will will use the "--get" option of the above