|
You are here |
batsov.com | ||
| | | | |
joarvarndt.se
|
|
| | | | | ||
| | | | |
www.masteringemacs.org
|
|
| | | | | [AI summary] This article explores advanced features of Emacs's shell mode and Comint framework, focusing on command history management, re-running commands, and shell substitutions to boost productivity for command-line users. | |
| | | | |
blog.aaronbieber.com
|
|
| | | | | Yes, my friends, it is true. After more than fifteen years using Vim, teaching Vim, proselytizing about Vim, all the while scoffing in the general direction of Emacs, I've seen the light. The light of Lisp... Or something. If, like me, you're curious enough to give Emacs a try, this post should help you get off the ground. It's taken me at least the fourteen days described in the title, but with my help it should only take you two or three. There are some things to get used to, some new paradigms, and you have to learn a bit of Lisp (Elisp, actually), but don't be afraid, it's not that hard. | |
| | | | |
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"... | ||