ambevar-dotfiles/.emacs.d/lisp/functions.el

506 lines
19 KiB
EmacsLisp
Raw Normal View History

;;; Functions
;;; Notes on mark and region: to get a consistent behaviour regardless of
;;; Transient mode, check `(use-region-p)'. It will work as expected if
;;; transient. If not, it will always be true as soon as the mark has been set
;;; once; so you need to make sure the mark is set as you want beforehand (e.g.
;;; whole buffer, single line...). This is the behaviour of `sort-lines'.
;;;
;;; The clean way to get static region boundaries and fallback on buffer boundaries:
;;
;; (let (start end)
;; (if (use-region-p)
;; (setq start (region-beginning) end (region-end))
;; (setq start (point-min) end (point-max)))
;;
;;; If several commands act on region and the region size/pos is susceptible to change:
;;
;; (let ((start (set-marker (make-marker) (if (use-region-p) (region-beginning) (point-min))))
;; (end (set-marker (make-marker) (if (use-region-p) (region-end) (point-end)))))
;;
;;; For commands that only work on regions:
;;
;; (defun count-lines-region (start end)
;; "Print number of lines and characters in the region."
;; (interactive "r")
;; ...
;; TODO: Use `process-lines' instead.
(defun ambrevar/call-process-to-string (program &rest args)
2014-02-24 12:22:22 +01:00
"Call PROGRAM with ARGS and return output."
(with-output-to-string
(with-current-buffer standard-output
2014-02-24 12:22:22 +01:00
(apply 'call-process program nil t nil args))))
(defun ambrevar/define-keys (map key def &rest bindings)
"Like `define-key' but allow for defining several bindings at once.
`KEY' must be acceptable for `kbd'."
(while key
(define-key map (kbd key) def)
(setq key (pop bindings)
def (pop bindings))))
(defun ambrevar/escape-region (&optional regex to-string)
2014-03-10 00:11:46 +01:00
"Escape double-quotes and backslashes.
This is useful for writing Elisp strings containing those
2017-05-24 00:27:02 +02:00
characters. The optional parameters let you control the replacement of REGEX for
TO-STRING."
2014-03-10 00:11:46 +01:00
(interactive)
(unless regex (setq regex "\\([\"\\\\]\\)"))
(unless to-string (setq to-string "\\\\\\1"))
(while (re-search-forward regex (if (use-region-p) (region-end) (point-max)) t)
(replace-match to-string)))
2014-03-10 00:11:46 +01:00
2018-02-15 14:23:46 +01:00
(defun ambrevar/prettify ()
"(Un)tabify, indent and delete trailing whitespace.
Tabify if `indent-tabs-mode' is true, otherwise use spaces.
Work on buffer or region.
2018-02-15 14:23:46 +01:00
If `ambrevar/prettify-inhibit-p' is non-nil, it does nothing.
Require `ambrevar/tabify-leading'."
(interactive)
2018-02-15 14:23:46 +01:00
(unless ambrevar/prettify-inhibit-p
(let ((start (set-marker (make-marker) (if (use-region-p) (region-beginning) (point-min))))
(end (set-marker (make-marker) (if (use-region-p) (region-end) (point-max)))))
(if indent-tabs-mode
(ambrevar/tabify-leading)
(untabify start end))
(indent-region start end)
(save-restriction
(narrow-to-region start end)
(delete-trailing-whitespace)))))
2018-02-15 14:23:46 +01:00
(defcustom ambrevar/prettify-inhibit-p t
"Do not run `ambrevar/prettify' if non-nil.
As this is not friendly to foreign projects, `ambrevar/prettify' should be run
selectively."
:safe 'booleanp)
(defun ambrevar/flyspell-and-whitespace-mode ()
"Toggle `flyspell-mode' and `whitespace-mode'."
(interactive)
(if (derived-mode-p 'prog-mode)
(flyspell-prog-mode)
(flyspell-mode)
(when flyspell-mode
(flyspell-buffer)))
(whitespace-mode 'toggle))
(global-set-key (kbd "<f9>") #'ambrevar/flyspell-and-whitespace-mode)
;;; From https://www.reddit.com/r/emacs/comments/70bn7v/what_do_you_have_emacs_show_when_it_starts_up/.
;;; Supply a random fortune cookie as the *scratch* message.
(defun ambrevar/fortune-scratch-message ()
(interactive)
(let ((fortune
(when (executable-find "fortune")
(with-temp-buffer
(shell-command "fortune" t)
(while (not (eobp))
(insert ";; ")
(forward-line))
(delete-trailing-whitespace (point-min) (point-max))
(concat (buffer-string) "\n")))))
(if (called-interactively-p 'any)
(insert fortune)
fortune)))
(defun ambrevar/global-set-keys (key def &rest bindings)
"Like `global-set-key' but allow for defining several bindings at once.
`KEY' must be acceptable for `kbd'."
(while key
(global-set-key (kbd key) def)
(setq key (pop bindings)
def (pop bindings))))
(defun ambrevar/image-display-external ()
"Display original image at point using external viewer."
(interactive)
(let ((file (or (get-text-property (point) 'original-file-name)
(let ((image (get-text-property (point) 'display)))
(when image
(plist-get (cdr image) :file))))))
(if (not file)
(message "No original file name found")
(start-process "image-dired-thumb-external" nil
image-dired-external-viewer (expand-file-name file)))))
(define-key image-map (kbd "S-<return>") 'ambrevar/image-display-external)
(defun ambrevar/insert-and-indent (text)
"Insert indented TEXT at point."
(interactive "s Text: ")
(let ((oldpoint (point)))
(insert text)
(indent-region oldpoint (point))
(newline-and-indent)))
2018-06-25 15:40:33 +02:00
(defun ambrevar/current-minor-modes ()
"Return the list of minor modes enabled in the current buffer."
2018-06-25 15:40:33 +02:00
(interactive)
(delq nil
(mapcar (lambda (mode)
(if (and (boundp mode) (symbol-value mode))
mode))
minor-mode-list)))
(defun ambrevar/local-set-keys (key def &rest bindings)
"Like `local-set-key' but allow for defining several bindings at once.
`KEY' must be acceptable for `kbd'."
(while key
(local-set-key (kbd key) def)
(setq key (pop bindings)
def (pop bindings))))
(defun ambrevar/move-border-left (arg)
2014-02-21 20:08:20 +01:00
"Move window border in a natural manner.
If this is a window with its right edge being the edge of the
2014-02-21 19:38:49 +01:00
screen, enlarge the window horizontally. If this is a window with
its left edge being the edge of the screen, shrink the window
2014-02-21 20:08:20 +01:00
horizontally. Otherwise, default to enlarging horizontally.\n
2017-05-24 00:27:02 +02:00
Enlarge/Shrink by ARG columns, or 5 if ARG is nil."
2014-02-21 19:38:49 +01:00
(interactive "P")
(if (= (count-windows) 2)
(ambrevar/move-border-left-or-right arg t)))
(global-set-key (kbd "M-(") 'ambrevar/move-border-left)
2013-10-27 14:28:47 +01:00
(defun ambrevar/move-border-left-or-right (arg dir-left)
2017-05-24 00:27:02 +02:00
"Wrapper around move-border-left and move-border-right.
ARG is the number of columns to move.
If DIR-LEFT is t, then move left, otherwise move right."
2013-10-27 14:28:47 +01:00
(interactive)
2017-05-24 00:27:02 +02:00
(unless arg (setq arg 5))
2017-05-07 21:14:13 +02:00
(let ((left-edge (= (car (window-edges)) 0)))
(if (or
(and left-edge dir-left)
(and (not left-edge) (not dir-left)))
2014-02-21 19:38:49 +01:00
(shrink-window arg t)
(enlarge-window arg t))))
2013-10-27 14:28:47 +01:00
(defun ambrevar/move-border-right (arg)
2014-02-21 20:08:20 +01:00
"See `move-border-left'."
2014-02-21 19:38:49 +01:00
(interactive "P")
(if (= (count-windows) 2)
(ambrevar/move-border-left-or-right arg nil)))
(global-set-key (kbd "M-)") 'ambrevar/move-border-right)
2013-10-27 14:28:47 +01:00
(defun ambrevar/reset-fill-column ()
"Reset `fill-column' to its default value."
(setq fill-column (default-value 'fill-column)))
(defun ambrevar/shell-last-command ()
2014-02-21 19:38:49 +01:00
"Run last shell command."
(interactive)
(let ((last (car shell-command-history)))
(if last
(shell-command last)
(error "Shell command history is empty"))))
(global-set-key (kbd "C-M-!") 'shell-last-command)
(defun ambrevar/skeleton-make-markers ()
2014-02-21 20:08:20 +01:00
"Save last skeleton markers in a list.
Hook function for skeletons."
2014-02-13 17:22:52 +01:00
(while skeleton-markers
(set-marker (pop skeleton-markers) nil))
(setq skeleton-markers
(mapcar 'copy-marker (reverse skeleton-positions))))
2014-02-21 19:38:49 +01:00
2014-03-13 16:13:21 +01:00
(defvar skeleton-markers nil
2017-05-24 00:27:02 +02:00
"Markers for locations saved in `skeleton-positions'.")
2014-03-13 16:13:21 +01:00
(defun ambrevar/skeleton-previous-position ()
"Move to previous skeleton placeholder.
See `skeleton-next-position'."
(skeleton-next-position t))
(defun ambrevar/skeleton-next-position (&optional reverse)
2017-05-24 00:27:02 +02:00
"Move to next skeleton placeholder.
If REVERSE it t, move to previous placeholder."
2014-02-13 17:22:52 +01:00
(interactive "P")
(let ((positions (mapcar 'marker-position skeleton-markers))
2014-03-09 20:13:42 +01:00
(comp (if reverse '< '<=))
pos
prev)
2014-02-13 17:22:52 +01:00
(when positions
2014-03-09 20:13:42 +01:00
(setq pos (pop positions))
(while (and pos (funcall comp pos (point)))
(setq prev pos)
(setq pos (pop positions)))
(cond
((and reverse prev) (goto-char prev))
(reverse (goto-char (car (last skeleton-markers))))
(pos (goto-char pos))
(t (goto-char (car skeleton-markers)))))))
2014-02-13 15:56:13 +01:00
(defun ambrevar/sort-lines-unique (arg)
"Remove trailing white space, then duplicate lines, then sort the result.
Do not fold case with \\[universal-argument] or non-nil ARG."
(interactive "P")
(let ((start (set-marker (make-marker) (if (use-region-p) (region-beginning) (point-min))))
(end (set-marker (make-marker) (if (use-region-p) (region-end) (point-end)))))
(let ((sort-fold-case (if arg nil t)))
(delete-trailing-whitespace start end)
(delete-duplicate-lines start end)
(sort-lines nil start end))))
2014-02-18 12:13:18 +01:00
(defun ambrevar/swap-windows (&optional w1 w2)
2017-10-28 09:58:10 +02:00
"If 2 windows are up, swap them.
Else if W1 is a window, swap it with current window.
If W2 is a window too, swap both."
2014-02-21 19:38:49 +01:00
(interactive)
2017-10-28 09:58:10 +02:00
(unless (or (= 2 (count-windows))
(windowp w1)
(windowp w2))
(error "Ambiguous window selection"))
(let* ((w1 (or w1 (car (window-list))))
(w2 (or w2
(if (eq w1 (car (window-list)))
(nth 1 (window-list))
(car (window-list)))))
(b1 (window-buffer w1))
(b2 (window-buffer w2))
(s1 (window-start w1))
(s2 (window-start w2)))
(with-temp-buffer
;; Some buffers like EXWM buffers can only be in one live buffer at once.
;; Switch to a dummy buffer in w2 so that we don't display any buffer twice.
(set-window-buffer w2 (current-buffer))
(set-window-buffer w1 b2)
(set-window-buffer w2 b1))
(set-window-start w1 s2)
(set-window-start w2 s1))
2017-10-28 09:58:10 +02:00
(select-window w1))
(global-set-key (kbd "C-x \\") 'swap-windows)
(defun ambrevar/swap-windows-left ()
2017-10-28 09:58:10 +02:00
"Swap current window with the window to the left."
(interactive)
2018-06-01 10:52:03 +02:00
(ambrevar/swap-windows (window-in-direction 'left)))
(defun ambrevar/swap-windows-below ()
2017-10-28 09:58:10 +02:00
"Swap current window with the window below."
(interactive)
2018-06-01 10:52:03 +02:00
(ambrevar/swap-windows (window-in-direction 'below)))
(defun ambrevar/swap-windows-above ()
2017-10-28 09:58:10 +02:00
"Swap current window with the window above."
(interactive)
2018-06-01 10:52:03 +02:00
(ambrevar/swap-windows (window-in-direction 'above)))
(defun ambrevar/swap-windows-right ()
2017-10-28 09:58:10 +02:00
"Swap current window with the window to the right."
(interactive)
2018-06-01 10:52:03 +02:00
(ambrevar/swap-windows (window-in-direction 'right)))
2017-10-28 09:58:10 +02:00
(defun ambrevar/switch-to-last-buffer ()
"Switch to last open buffer in current window."
(interactive)
(switch-to-buffer (other-buffer (current-buffer) 1)))
(defun ambrevar/tabify-leading ()
"Call `tabify' on leading spaces only.
Works on whole buffer if region is unactive."
(interactive)
(require 'tabify) ; Need this to initialize `tabify-regexp'.
(let ((tabify-regexp-old tabify-regexp) start end)
(if (use-region-p)
(setq start (region-beginning) end (region-end))
(setq start (point-min) end (point-max)))
(unwind-protect
(progn
(setq tabify-regexp "^\t* [ \t]+")
(tabify start end))
(setq tabify-regexp tabify-regexp-old))))
;; Inspired by https://github.com/abo-abo/oremacs.git.
(defun ambrevar/test-emacs ()
"Return nil on error, t on success so that it can be added to
`kill-emacs-query-functions'."
(interactive)
(let ((output
(shell-command-to-string
(format "emacs --batch --eval \"
(condition-case e
(progn
(load \\\"%s\\\")
(message \\\"-OK-\\\"))
(error
(message \\\"ERROR:\\\")
(signal (car e) (cdr e))))\""
user-init-file))))
(if (string-match "-OK-" output)
(progn
(when (called-interactively-p 'any)
(message "All is well"))
t)
(switch-to-buffer-other-window "*init file error*")
(erase-buffer)
(insert output)
(search-backward "ERROR:")
nil)))
(add-hook 'kill-emacs-query-functions 'ambrevar/test-emacs)
2017-10-08 20:36:28 +02:00
;;; TODO: Store window configurations in a buffer-name-indexed alist? Not
;;; sure that would ever be useful.
(defvar single-window--last-configuration nil "Last window configuration before calling `delete-other-windows'.")
(defun ambrevar/toggle-single-window ()
"Un-maximize current window.
If multiple windows are active, save window configuration and
delete other windows. If only one window is active and a window
configuration was previously save, restore that configuration."
(interactive)
(if (= (count-windows) 1)
(when single-window--last-configuration
(set-window-configuration single-window--last-configuration))
(setq single-window--last-configuration (current-window-configuration))
(delete-other-windows)))
(defun ambrevar/toggle-window-dedicated ()
2014-02-21 19:38:49 +01:00
"Toggle whether the current active window is dedicated or not.
Run it in each window you want to 'freeze', i.e. prevent Emacs
from acting on it."
(interactive)
(message
2017-05-24 00:27:02 +02:00
(if (let ((window (get-buffer-window (current-buffer))))
2014-02-21 19:38:49 +01:00
(set-window-dedicated-p window
(not (window-dedicated-p window))))
"Window '%s' is dedicated"
"Window '%s' is normal")
(current-buffer)))
2018-06-01 10:52:03 +02:00
(global-set-key (kbd "<pause>") 'ambrevar/toggle-window-dedicated)
(defun ambrevar/toggle-window-split ()
2014-02-21 20:08:20 +01:00
"Switch between vertical and horizontal split.
It only works for frames with exactly two windows."
2014-02-21 19:38:49 +01:00
(interactive)
(if (= (count-windows) 2)
(let* ((this-win-buffer (window-buffer))
(next-win-buffer (window-buffer (next-window)))
(this-win-edges (window-edges (selected-window)))
(next-win-edges (window-edges (next-window)))
(this-win-2nd (not (and (<= (car this-win-edges)
(car next-win-edges))
(<= (cadr this-win-edges)
(cadr next-win-edges)))))
(splitter
(if (= (car this-win-edges)
(car (window-edges (next-window))))
'split-window-horizontally
'split-window-vertically)))
(delete-other-windows)
(let ((first-win (selected-window)))
(funcall splitter)
(if this-win-2nd (other-window 1))
(set-window-buffer (selected-window) this-win-buffer)
(set-window-buffer (next-window) next-win-buffer)
(select-window first-win)
(if this-win-2nd (other-window 1))))))
(global-set-key (kbd "C-x C-\\") 'toggle-window-split)
(defun ambrevar/toggle-word-delim ()
2014-02-21 20:08:20 +01:00
"Make underscore part of the word syntax or not.
This does not interfere with `subword-mode'."
(interactive)
2014-03-13 15:48:34 +01:00
(if (equal (char-syntax ?_) "_")
2014-02-21 19:38:49 +01:00
(progn
(modify-syntax-entry ?_ "w")
(message "_ is a not word delimiter"))
(modify-syntax-entry ?_ "_")
(message "_ is a word delimiter")))
;;; TODO: Move turn-on-* functions to 'hook-functions.el'?
2018-02-15 13:28:49 +01:00
;;; And replace useless individual comments with a single global comment.
(defun ambrevar/turn-on-column-number-mode ()
"Unconditionally turn on `column-number-mode' for the current buffer."
(set (make-variable-buffer-local 'column-number-mode) t))
(defun ambrevar/turn-on-complete-filename ()
"Unconditionally turn on `comint-dynamic-complete-filename' for the current buffer."
2017-11-04 23:16:39 +01:00
(add-to-list 'completion-at-point-functions 'comint-dynamic-complete-filename t))
(defun ambrevar/turn-on-delete-trailing-whitespace ()
"Add the `delete-trailing-whitespace' function to `before-save-hook'.
This does not affect .csv files."
(unless (or (string= (file-name-extension buffer-file-name) "csv")
;; REVIEW: Emacs 26.1 hangs when running delete-trailing-whitespace on image.
(eq major-mode 'image-mode))
(add-hook 'before-save-hook 'delete-trailing-whitespace nil t)))
(defun ambrevar/turn-off-delete-trailing-whitespace ()
"Unconditionally remove the `delete-trailing-whitespace' function to `before-save-hook'."
(remove-hook 'before-save-hook 'delete-trailing-whitespace t))
2018-02-15 14:23:46 +01:00
(defun ambrevar/turn-on-prettify-before-save ()
"Unconditionally add the `ambrevar/prettify' function to `before-save-hook'."
(add-hook 'before-save-hook 'ambrevar/prettify nil t))
2018-02-15 14:23:46 +01:00
(defun ambrevar/turn-off-prettify-before-save ()
"Unconditionally remove the `ambrevar/prettify' function to `before-save-hook'."
(remove-hook 'before-save-hook 'ambrevar/prettify t))
(defun ambrevar/turn-off-indent-tabs ()
"Unconditionally turn off tab indentation."
(setq indent-tabs-mode nil))
(defun ambrevar/turn-on-indent-tabs ()
"Unconditionally turn on tab indentation."
(setq indent-tabs-mode t))
(defun ambrevar/turn-off-line-number-mode ()
"Unconditionally turn off `line-number-mode' fur the current buffer.."
(set (make-variable-buffer-local 'line-number-mode) nil))
(defun ambrevar/turn-off-linum ()
"Unconditionally turn off Linum mode."
(linum-mode 0))
(defun ambrevar/turn-on-newline-paragraph ()
"Unconditionally make of newlines the start of a paragraph."
(set (make-local-variable 'paragraph-start) "
"))
(defun ambrevar/turn-off-nobreak-char-display ()
(set (make-local-variable 'nobreak-char-display) nil))
(defun ambrevar/turn-on-skeleton-markers ()
"Allow skeletons to make markers to ease field navigation."
(add-hook 'skeleton-end-hook 'ambrevar/skeleton-make-markers))
(defun ambrevar/turn-on-tab-width-to-4 ()
2017-06-23 15:41:22 +02:00
"Unconditionally set tab width to 4."
(setq tab-width 4))
(defun ambrevar/turn-on-tab-width-to-8 ()
"Unconditionally set tab width to 8."
(setq tab-width 8))
(defun ambrevar/unfill-paragraph ()
2014-02-21 19:38:49 +01:00
"Paragraph at point is unwrapped on one single line."
(interactive)
(let ((fill-column (point-max)))
(fill-paragraph nil)))
(defun ambrevar/unfill-region ()
2014-02-21 20:08:20 +01:00
"Unfill all paragraphs found in current region.
Each paragraph stand on its line."
2014-02-21 19:38:49 +01:00
(interactive)
(let ((fill-column (point-max)))
(fill-region (region-beginning) (region-end) nil)))
(defun ambrevar/youtube-dl-url (&optional url)
"Run 'youtube-dl' over the URL.
If URL is nil, use URL at point."
2018-07-30 09:45:17 +02:00
(interactive)
(setq url (or url (thing-at-point-url-at-point)))
(let ((eshell-buffer-name "*youtube-dl*")
2019-01-06 12:52:48 +01:00
(directory (seq-find (lambda (dir)
(and (file-directory-p dir) (expand-file-name dir)))
'("~/temp" "~/Videos" "~/Downloads")
".")))
2018-07-30 09:45:17 +02:00
(eshell)
(when (eshell-interactive-process)
(eshell t))
(eshell-interrupt-process)
(insert (format " cd '%s' && youtube-dl " directory) url)
2018-07-30 09:45:17 +02:00
(eshell-send-input)))
2014-02-13 15:56:13 +01:00
(provide 'functions)