Mercurial > dotfiles
view .elisp/settings/99.move-file.el @ 526:852565046ed0 default tip
zsh: fidget with screen/tmux message
This should speed things up very slightly by avoiding some `grep` action
in the common case of no detached screens/tmuxes.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Mon, 14 Nov 2022 11:02:35 -0500 |
parents | 2f24474b1f84 |
children |
line wrap: on
line source
;; emacs move-file function from http://zck.me/emacs-move-file (defun move-file (new-location) "Write this file to NEW-LOCATION, and delete the old one." (interactive (list (if buffer-file-name (read-file-name "Move file to: ") (read-file-name "Move file to: " default-directory (expand-file-name (file-name-nondirectory (buffer-name)) default-directory))))) (when (file-exists-p new-location) (delete-file new-location)) (let ((old-location (buffer-file-name))) (write-file new-location t) (when (and old-location (file-exists-p new-location)) (delete-file old-location))))