You are here |
davemq.github.io | ||
| | | |
blog.jenkster.com
|
|
| | | | The personal blog of Kris Jenkins, geek. | |
| | | |
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"... | |
| | | |
vxlabs.com
|
|
| | | | Recently, as I replaced more of my Emacs-helm configuration with counsel and ivy, I noticed that ivy-switch-buffer, when augmented by ivy-rich, was not showing the directories of the buffers it was listing. After some Lisp spelunking, I discovered that it was because ivy-rich relies on the presence of either the projectile package, something I do not wish to have in my Emacs configuration, or on project.el, which I also do not use. In this post, I show how you can get full buffer filenames and project na... | |
| | | |
unofficialaciguide.com
|
|
| | One of the main benefits of ACI is the flexibility it offers. In particular, how easy it is to take configuration we have already completed, copy it, and re-use it for something else! For this demo, we'll take configuration from Tenant dev, and copy the entire policy configuration to make a new Tenant called Tenant ... More dev to prod: A network programmability demo with ACI |