1990s, 19
.
(package-initialize) (custom-set-variables '(cua-mode t nil (cua-base)) '(custom-enabled-themes (quote (leuven)))) (custom-set-faces ) (set-register ?e '(file . "~/.emacs")) (prefer-coding-system 'utf-8) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defun backup-dot-emacs () (interactive) (save-buffer) (setq backup-path (format "%s%s%s" "/path_to_the_backup_folder/ubuntu_dot_emacs_" (format-time-string "%Y_%m_%d_%I_%M_%S_%p") ".el")) (write-file backup-path 'confirm) (setq original-cursor (point)) (kill-buffer) (find-file "~/.emacs") (goto-char original-cursor) ) (global-set-key (kbd "C-`") 'backup-dot-emacs) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(set-register ?d '(file . "/path_to_the_blog_folder/dialogue59.txt")) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defun backup-blogging-tray () (interactive) (save-buffer) (setq return-file-name (buffer-file-name)) (setq backup-path (format "%s%s%s" "/path_to_the_backup_folder/blogging_tray_" (format-time-string "%Y_%m_%d_%I_%M_%S_%p") ".txt")) (write-file backup-path 'confirm) (setq original-cursor (point)) (kill-buffer) (find-file return-file-name) (goto-char original-cursor) ) (global-set-key (kbd "C-x C-a") 'backup-blogging-tray) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
— Me@2022.05.14 05:10:49 PM
.
.
2022.05.14 Saturday (c) All rights reserved by ACHK
You must be logged in to post a comment.