|
You are here |
www.erichgrunewald.com | ||
| | | | |
blog.jenkster.com
|
|
| | | | | The personal blog of Kris Jenkins, geek. | |
| | | | |
camdez.com
|
|
| | | | | ||
| | | | |
vxlabs.com
|
|
| | | | | You might have noticed the side-note in yesterday's blog post where I mentioned that exporting Orgmode notes with org-download attachment-style screenshots to blog posts using ox-hugo required one to convert [[attachment:...]]-style links to [[file:...][file:...]]-style links. Because the barrier from private note to possibly useful blog post should be as low as possible, I made the below function that will do the required conversion for the link under your cursor. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ... | |
| | | | |
takeonrules.com
|
|
| | | Last month I wrote Creating an Emacs Command to Rename Files per Denote File Naming Schema. Ive been using it in a one-off situation. And yesterday I wrote a wrapping function to call in dired. The source code for jf/dired-rename-files-to-denote-schema. (defun jf/dired-rename-files-to-denote-schema () "Rename marked files in `dired-mode'." (interactive) (when (seq-find (lambda (file) (member (file-name-nondirectory file) '("." ".."))) (dired-get-marked-files)) (user-error "Can't rename "." or ".." files"... | ||