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

507 lines
19 KiB
EmacsLisp
Raw Normal View History

2016-10-14 14:03:30 +02:00
;; 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")
(defun add-hook-and-eval (hook function)
"Add FUNCTION to HOOK and evaluate it.
This can be useful when called from a hooked function to make
sure it gets executed, since additions to hooks will be ignored
while `run-mode-hooks' is running."
(add-hook hook function)
(funcall function))
2014-02-24 12:22:22 +01:00
(defun call-process-to-string (program &rest args)
"Call PROGRAM with ARGS and return output."
(with-output-to-string
(with-current-buffer
standard-output
(apply 'call-process program nil t nil args))))
2014-02-21 19:38:49 +01:00
(defun count-occurences (regex string)
2017-05-24 00:27:02 +02:00
"Return number of times REGEX occurs in STRING.
If you want to operate on buffer, use `how-many' instead."
2014-02-21 19:38:49 +01:00
(let ((start 0) (matches 0))
(while (string-match regex string start)
(setq start (match-end 0))
(setq matches (1+ matches)))
matches))
2013-06-11 17:10:02 +02:00
(defun duplicate (arg)
2014-02-21 20:08:20 +01:00
"Duplicate the current line or region ARG times.
2013-06-11 17:10:02 +02:00
If there's no region, the current line will be duplicated. However, if
there's a region, all lines that region covers will be duplicated."
(interactive "p")
(let (beg
end
(origin (point))
(auto-fill-p (symbol-value 'auto-fill-function)))
(when (and (use-region-p) (> (point) (mark)))
(exchange-point-and-mark))
2013-06-11 17:10:02 +02:00
(setq beg (line-beginning-position))
(when (use-region-p)
(exchange-point-and-mark))
2013-06-11 17:10:02 +02:00
(setq end (line-end-position))
(let ((region (buffer-substring-no-properties beg end)))
(auto-fill-mode -1)
(dotimes (i arg)
(goto-char end)
(newline)
(insert region)
(setq end (point)))
(if auto-fill-p (auto-fill-mode))
(goto-char (+ origin (* (length region) arg) arg)))))
(define-key mickey-minor-mode-map (kbd "C-x M-d") 'duplicate)
2013-06-11 17:10:02 +02:00
(defun emacs-process-p (pid)
2017-05-24 00:27:02 +02:00
"If PID is the process ID of an Emacs process, return t, else nil.
Also returns nil if pid is nil."
(when pid
(let ((attributes (process-attributes pid)) (cmd))
(dolist (attr attributes)
(if (string= "comm" (car attr))
(setq cmd (cdr attr))))
(if (and cmd (or (string= "emacs" cmd) (string= "emacs.exe" cmd))) t))))
2014-03-10 00:11:46 +01:00
(defun escape-region (&optional regex to-string)
"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
(defun eval-and-replace ()
2013-06-11 17:10:02 +02:00
"Replace the last sexp with its value."
(interactive)
(backward-kill-sexp)
(condition-case nil
(prin1 (eval (read (current-kill 0)))
(current-buffer))
(error (message "Invalid expression")
(insert (current-kill 0)))))
2013-06-11 17:10:02 +02:00
(defun find-symbol-at-point ()
"Find directly the symbol at point, i.e. go to definition."
(interactive)
(let ((sym (symbol-at-point)))
(if (boundp sym)
(find-variable sym)
(find-function sym))))
2014-02-23 13:54:39 +01:00
;; Fix forward-page. Previously, when the point was at the end of the page,
;; going forward would skip 1 page. Changed:
;;
;; (if (bolp) (forward-char 1))
;;
;; to
;;
;; (if (string= page-delimiter "")
;;
;; I do not know why the (bolp) condition was used since it does not match the
;; above comment.
2017-05-07 21:14:13 +02:00
;; TODO: Fix reported to http://debbugs.gnu.org/cgi/bugreport.cgi?bug=20663.
2014-02-23 13:54:39 +01:00
(defun forward-page (&optional count)
2017-05-24 00:27:02 +02:00
"Move forward to page boundary.
With prefix or COUNT, repeat, or go back if negative.
2014-02-23 13:54:39 +01:00
A page boundary is any line whose beginning matches the regexp
`page-delimiter'."
(interactive "p")
(or count (setq count 1))
(while (and (> count 0) (not (eobp)))
;; In case the page-delimiter matches the null string,
;; don't find a match without moving.
(if (string= page-delimiter "") (forward-char 1))
(if (re-search-forward page-delimiter nil t)
2014-02-24 19:45:21 +01:00
nil
2014-02-23 13:54:39 +01:00
(goto-char (point-max)))
(setq count (1- count)))
(while (and (< count 0) (not (bobp)))
;; In case the page-delimiter matches the null string,
;; don't find a match without moving.
(and (save-excursion (re-search-backward page-delimiter nil t))
(= (match-end 0) (point))
(goto-char (match-beginning 0)))
(forward-char -1)
(if (re-search-backward page-delimiter nil t)
;; We found one--move to the end of it.
(goto-char (match-end 0))
;; We found nothing--go to beg of buffer.
(goto-char (point-min)))
(setq count (1+ count))))
2014-02-21 19:38:49 +01:00
(defun get-closest-pathname (&optional file)
2014-02-21 20:08:20 +01:00
"Get pathname of the first instance of FILE towards root.
If FILE is unspecified, look for 'Makefile'. If it does not find
2017-05-11 19:34:27 +02:00
FILE, return nil. This may not do the correct thing in presence
of links."
(let* ((pwd default-directory) (file (or file "Makefile")) (target (expand-file-name file pwd)))
(while
(unless (or (file-exists-p target) (equal pwd "/"))
(setq pwd (expand-file-name ".." pwd))
(setq target (expand-file-name file pwd))))
(if (file-exists-p target) target nil)))
2013-06-11 17:10:02 +02:00
(defun insert-and-indent (text)
"Insert indented TEXT at point."
(interactive "s Text: ")
(let ((oldpoint (point)))
(insert text)
(indent-region oldpoint (point))
(newline-and-indent)))
2014-03-08 11:01:29 +01:00
(defun insert-file-name (filename &optional args)
"Insert name of file FILENAME into buffer after point.
Prefixed with \\[universal-argument], expand the file name to its
fully canonicalized path. See `expand-file-name'.
2014-03-08 11:01:29 +01:00
Prefixed with \\[negative-argument], use relative path to file
name from current directory, `default-directory'. See
`file-relative-name'.
The default with no prefix is to insert the file name exactly as
it appears in the minibuffer prompt."
;; Based on insert-file in Emacs -- ashawley 20080926
(interactive "*fInsert file name: \nP")
(cond ((eq '- args)
(insert (file-relative-name filename)))
((not (null args))
(insert (expand-file-name filename)))
(t
(insert filename))))
2014-03-08 15:58:29 +01:00
(defun load-external (ext feature &optional mode default)
2017-05-24 00:27:02 +02:00
"Load FEATURE with EXT.
Add the EXT regex to `auto-mode-alist' such that it loads the
2014-03-08 15:58:29 +01:00
associated symbol FEATURE. If FEATURE has not the same name as
the mode, you should provide the real mode name in symbol MODE.
If MODE is nil or unspecified, FEATURE is used as the mode name.
We call `autoload' to make the mode accessible interactively. We
need `require' to check if feature is loadable. It allows us to
fallback to the mode provided in symbol DEFAULT."
(let ((local-mode (if mode mode feature)))
(autoload local-mode (symbol-name feature) nil t)
(add-to-list
'auto-mode-alist
(cons ext `(lambda ()
(if (require ',feature nil t)
(,local-mode)
,(if (null default)
`(warn "Could not load %s, fallback to %s"
2017-05-24 00:27:02 +02:00
(symbol-name ',feature) (symbol-name ',major-mode))
2014-03-08 15:58:29 +01:00
`(progn
(,default)
(warn "Could not load %s, fallback to %s"
(symbol-name ',feature) (symbol-name ',default))))))))))
2014-03-09 12:42:27 +01:00
(defun mark-word-from-beginning (&optional arg allow-extend)
2017-05-24 00:27:02 +02:00
"Set the point at the beginning of the word and call `mark-word'.
ARG and ALLOW-EXTEND are the same."
(interactive "P\np")
(cond ((and allow-extend
(or (and (eq last-command this-command) (mark t))
(region-active-p)))
2014-03-09 12:42:27 +01:00
(mark-word arg allow-extend))
(t
2013-10-22 12:44:38 +02:00
;; The next line makes sure the word at point gets selected if point is
;; on the first letter. We need to ignore error if point is at EOF.
(ignore-errors (forward-char))
(backward-word)
2014-03-09 12:42:27 +01:00
(mark-word arg allow-extend))))
(define-key mickey-minor-mode-map (kbd "M-@") 'mark-word-from-beginning)
2013-10-27 14:28:47 +01:00
2014-02-21 19:38:49 +01:00
(defun 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)
(move-border-left-or-right arg t)))
(define-key mickey-minor-mode-map (kbd "M-(") 'move-border-left)
2013-10-27 14:28:47 +01:00
2017-05-07 21:14:13 +02:00
(defun 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
2014-02-21 19:38:49 +01:00
(defun 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)
(move-border-left-or-right arg nil)))
(define-key mickey-minor-mode-map (kbd "M-)") 'move-border-right)
2013-10-27 14:28:47 +01:00
2014-02-24 19:12:29 +01:00
(defun page-count ()
2015-04-26 17:17:08 +02:00
"Return page count."
2014-02-24 19:12:29 +01:00
(save-restriction
(widen)
(save-excursion
(+ 1 (how-many
page-delimiter 1 (point-max))))))
2014-02-24 19:12:29 +01:00
(defun page-number ()
"Return page number."
2014-02-24 19:12:29 +01:00
(save-restriction
(widen)
(save-excursion
(let ((count 1)
(opoint (point)))
(goto-char (point-min))
(while (re-search-forward page-delimiter opoint t)
(if (= (match-beginning 0) (match-end 0))
(forward-char 1))
(setq count (1+ count)))
count))))
2014-02-24 19:12:29 +01:00
2014-02-24 19:45:21 +01:00
(defun page-number-mode (activate)
"Display of page number in mode line.
If ACTIVATE is non-nil, enable, disable otherwise. Interactively,
activate unless called with \\[universal-argument].\n\nThis adds
2014-02-24 19:45:21 +01:00
page-number/page-count to mode line. It will only display if
there is more than one page. A page is delimited by
2017-05-24 00:27:02 +02:00
page-delimiter.\n
2014-02-24 19:45:21 +01:00
WARNING: this may slow down editing on big files."
(interactive (list (not (equal current-prefix-arg '(4)))))
(setq mode-line-format
`("%e"
mode-line-front-space
mode-line-mule-info
mode-line-client
mode-line-modified
mode-line-remote
mode-line-frame-identification
mode-line-buffer-identification
" "
mode-line-position
,(when activate '(:eval (when (> (page-count) 1) (format "%d/%d" (page-number) (page-count)))))
(vc-mode vc-mode)
" "
mode-line-modes
mode-line-misc-info
mode-line-end-spaces)))
2014-02-24 19:45:21 +01:00
;; Almost useless compared to Helm-file M-R. However helm does not change
;; current directory.
2014-02-21 19:38:49 +01:00
(defun rename-buffer-and-file ()
"Renames current buffer and file it is visiting."
(interactive)
2014-02-21 19:38:49 +01:00
(let ((name (buffer-name))
(filename (buffer-file-name)))
(if (not (and filename (file-exists-p filename)))
(error "Buffer '%s' is not visiting a file!" name)
(let ((new-name (read-file-name "New name: " filename)))
(cond ((get-buffer new-name)
(error "A buffer named '%s' already exists!" new-name))
(t
(rename-file filename new-name 1)
(rename-buffer new-name)
(set-visited-file-name new-name)
(set-buffer-modified-p nil)
(message "File '%s' successfully renamed to '%s'" name (file-name-nondirectory new-name))))))))
2014-02-21 19:38:49 +01:00
(defun sanitize ()
2017-05-24 00:27:02 +02:00
"(Un)tabify, indent and delete trailing whitespace.
Tabify if `indent-tabs-mode' is true, otherwise use spaces.
Work on buffer or region. Require `tabify-leading'."
2014-02-21 19:38:49 +01:00
(interactive)
(let ((start (set-marker (make-marker) (if (use-region-p) (region-beginning) (point-min))))
2017-05-27 16:47:32 +02:00
(end (set-marker (make-marker) (if (use-region-p) (region-end) (point-max)))))
(if indent-tabs-mode
(tabify-leading)
(untabify start end))
(indent-region start end)
2014-02-21 19:38:49 +01:00
(save-restriction
(narrow-to-region start end)
2014-02-21 19:38:49 +01:00
(delete-trailing-whitespace))))
2014-02-21 19:38:49 +01:00
(defun shell-last-command ()
"Run last shell command."
(interactive)
(let ((last (car shell-command-history)))
(if last
(shell-command last)
(error "Shell command history is empty"))))
(define-key mickey-minor-mode-map (kbd "C-M-!") 'shell-last-command)
2014-02-13 17:22:52 +01:00
(defun 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
2014-02-13 17:22:52 +01:00
(defun skeleton-next-position (&optional reverse)
2017-05-24 00:27:02 +02:00
"Move to next skeleton placeholder.
If REVERSE it t, move to previes 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 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 spawn-terminal ()
"Spawn terminal asynchronously.
The SHELL_CD environement variable is set to `default-directory'.
The shell can use it to automatically change directory to it."
(interactive)
(let ((term (or (getenv "TERMCMD") "xterm")))
(when (executable-find term)
(start-process "dummy" nil "env" (concat "SHELL_CD=" (expand-file-name default-directory)) term))))
2014-02-21 19:38:49 +01:00
(defun swap-windows ()
"If 2 windows are up, swap them."
2014-02-21 19:38:49 +01:00
(interactive)
(unless (= 2 (count-windows))
(error "There are not 2 windows"))
(let* ((w1 (car (window-list)))
(w2 (nth 1 (window-list)))
(b1 (window-buffer w1))
(b2 (window-buffer w2))
(s1 (window-start w1))
(s2 (window-start w2)))
(set-window-buffer w1 b2)
(set-window-buffer w2 b1)
(set-window-start w1 s2)
(set-window-start w2 s1))
2014-02-21 19:38:49 +01:00
(other-window 1))
(define-key mickey-minor-mode-map (kbd "C-x \\") 'swap-windows)
(defun 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))))
2014-02-21 19:38:49 +01:00
(defun toggle-window-dedicated ()
"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)))
(define-key mickey-minor-mode-map [pause] 'toggle-window-dedicated)
2014-02-21 19:38:49 +01:00
(defun 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))))))
(define-key mickey-minor-mode-map (kbd "C-x C-\\") 'toggle-window-split)
2014-02-21 19:38:49 +01:00
(defun 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")))
2014-02-21 19:38:49 +01:00
(defun unfill-paragraph ()
"Paragraph at point is unwrapped on one single line."
(interactive)
(let ((fill-column (point-max)))
(fill-paragraph nil)))
(defun 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)))
2014-02-13 15:56:13 +01:00
(provide 'functions)