diff options
author | Sacha Chua <sacha@sachachua.com> | 2023-11-05 08:48:33 -0500 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2023-11-05 08:48:33 -0500 |
commit | f1db2f93ac701dc543402112e88945ad03364c9b (patch) | |
tree | 74890627fee7731432f15628d361ede860190e5f | |
parent | 152011371ee37e38bd67227c2d7c9fca704b9be1 (diff) | |
download | emacsconf-el-f1db2f93ac701dc543402112e88945ad03364c9b.tar.xz emacsconf-el-f1db2f93ac701dc543402112e88945ad03364c9b.zip |
add dired shortcut for res dir
-rw-r--r-- | emacsconf.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacsconf.el b/emacsconf.el index 9432aee..cdc6f10 100644 --- a/emacsconf.el +++ b/emacsconf.el @@ -149,9 +149,15 @@ (defun emacsconf-ftp-upload-dired () (interactive) (dired emacsconf-ftp-upload-dir "-tl")) + (defun emacsconf-upload-dired () (interactive) (dired emacsconf-upload-dir "-tl")) + +(defun emacsconf-res-upload-dired () + (interactive) + (dired (expand-file-name "upload" emacsconf-res-dir) "-tl")) + (defun emacsconf-backstage-dired () (interactive) (dired emacsconf-backstage-dir "-tl")) |