Explore >> Select a destination


You are here

lambdaland.org
| | takeonrules.com
7.5 parsecs away

Travel
| | 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"...
| | blog.jenkster.com
9.7 parsecs away

Travel
| | The personal blog of Kris Jenkins, geek.
| | hiepph.xyz
8.7 parsecs away

Travel
| | My ~/.emacs.d configuration used to be a mess. For example, here are 2 old configurations for IDO and sidebar neotree. ;; ### IDO ##### (require 'ido) ;; enable IDO (ido-mode 1) (ido-everywhere 1) (ido-ubiquitous-mode 1) (setq ido-enable-flex-matching t) (setq ido-use-filename-at-point nil) (setq ido-auto-merge-work-directories-length -1) (setq ido-use-virtual-buffers t) ;; Shows a list of buffers (global-set-key (kbd "C-x C-b") 'ibuffer) ;; #### Neo Tree ##### (require-package 'neotree) ;; Bind F8 to sh...
| | stevenhicks.me
78.8 parsecs away

Travel
| Work projects require git commits to be signed with my work email; I'd like commits on my personal projects to be signed with my personal email. The solution: conditional includes in my .gitconfig!