diff options
author | JSDurand <mmemmew@gmail.com> | 2021-02-27 02:07:41 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2021-02-27 02:07:41 +0800 |
commit | eae7419bd1398991ed91c317ccffc32781510e5d (patch) | |
tree | 7eb3c2542c4654ab538c549aaf9c6c6f28ddf836 /eshell-conf.el | |
parent | 400d4ec56f3bcbcf2a184061d5ece214fe54126b (diff) |
Further adjustments to eshell and elfeed.
* elfeed-conf.el (durand-eshell-download-sentinel):
(durand-elfeed-download-video):
(elfeed-search-mode-map):
(elfeed-show-mode-map): Add the ability to conveniently download videos.
* eshell-conf.el (eshell/mark): Quote the shell argument properly.
Diffstat (limited to 'eshell-conf.el')
-rw-r--r-- | eshell-conf.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eshell-conf.el b/eshell-conf.el index a1bdf68..6bb255a 100644 --- a/eshell-conf.el +++ b/eshell-conf.el @@ -73,7 +73,7 @@ directory is used." (directory-file-name (file-name-directory default-directory)))))) (eshell-command-result - (format "ln -sf %s %s" + (format "ln -sf \"%s\" \"%s\"" default-directory (expand-file-name args eshell-mark-directory)))) ;;;###autoload |