123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370 |
- ;;; editing-defuns.el --- Basic text editing defuns -*- lexical-binding: t; -*-
- ;;; Code:
- (require 's)
- (defun open-line-below ()
- (interactive)
- (end-of-line)
- (newline)
- (indent-for-tab-command))
- (defun open-line-above ()
- (interactive)
- (beginning-of-line)
- (newline)
- (forward-line -1)
- (indent-for-tab-command))
- (defun smart-open-line ()
- "Insert an empty line after the current line.
- Position the cursor at its beginning, according to the current mode."
- (interactive)
- (move-end-of-line nil)
- (newline-and-indent))
- (defun smart-open-line-above ()
- "Insert an empty line above the current line.
- Position the cursor at it's beginning, according to the current mode."
- (interactive)
- (move-beginning-of-line nil)
- (newline-and-indent)
- (forward-line -1)
- (indent-according-to-mode))
- (defun new-line-in-between ()
- (interactive)
- (newline)
- (save-excursion
- (newline)
- (indent-for-tab-command))
- (indent-for-tab-command))
- (defun new-line-dwim ()
- (interactive)
- (let ((break-open-pair (or (and (looking-back "{" 1) (looking-at "}"))
- (and (looking-back ">" 1) (looking-at "<"))
- (and (looking-back "(" 1) (looking-at ")"))
- (and (looking-back "\\[" 1) (looking-at "\\]")))))
- (newline)
- (when break-open-pair
- (save-excursion
- (newline)
- (indent-for-tab-command)))
- (indent-for-tab-command)))
- (defun duplicate-current-line-or-region (arg)
- "Duplicates the current line or region ARG times.
- If there's no region, the current line will be duplicated."
- (interactive "p")
- (if (region-active-p)
- (let ((beg (region-beginning))
- (end (region-end)))
- (duplicate-region arg beg end)
- (one-shot-keybinding "d" (lambda () (duplicate-region 1 beg end))))
- (duplicate-current-line arg)
- (one-shot-keybinding "d" 'duplicate-current-line)))
- (defun one-shot-keybinding (key command)
- (set-temporary-overlay-map
- (let ((map (make-sparse-keymap)))
- (define-key map (kbd key) command)
- map) t))
- (defun replace-region-by (fn)
- (let* ((beg (region-beginning))
- (end (region-end))
- (contents (buffer-substring beg end)))
- (delete-region beg end)
- (insert (funcall fn contents))))
- (defun duplicate-region (&optional num start end)
- "Duplicates the region bounded by START and END NUM times.
- If no START and END is provided, the current region-beginning and
- region-end is used."
- (interactive "p")
- (save-excursion
- (let* ((start (or start (region-beginning)))
- (end (or end (region-end)))
- (region (buffer-substring start end)))
- (goto-char end)
- (dotimes (i num)
- (insert region)))))
- (defun duplicate-current-line (&optional num)
- "Duplicate the current line NUM times."
- (interactive "p")
- (save-excursion
- (when (eq (point-at-eol) (point-max))
- (goto-char (point-max))
- (newline)
- (forward-char -1))
- (duplicate-region num (point-at-bol) (1+ (point-at-eol)))))
- ;; automatically indenting yanked text if in programming-modes
- (require 'dash)
- (defvar yank-indent-modes '(prog-mode
- sgml-mode
- js2-mode)
- "Modes in which to indent regions that are yanked (or yank-popped)")
- (defvar yank-advised-indent-threshold 1000
- "Threshold (# chars) over which indentation does not automatically occur.")
- (defun yank-advised-indent-function (beg end)
- "Do indentation, as long as the region isn't too large."
- (if (<= (- end beg) yank-advised-indent-threshold)
- (indent-region beg end nil)))
- (defadvice yank (after yank-indent activate)
- "If current mode is one of 'yank-indent-modes, indent yanked text (with prefix arg don't indent)."
- (if (and (not (ad-get-arg 0))
- (--any? (derived-mode-p it) yank-indent-modes))
- (let ((transient-mark-mode nil))
- (yank-advised-indent-function (region-beginning) (region-end)))))
- (defadvice yank-pop (after yank-pop-indent activate)
- "If current mode is one of 'yank-indent-modes, indent yanked text (with prefix arg don't indent)."
- (if (and (not (ad-get-arg 0))
- (member major-mode yank-indent-modes))
- (let ((transient-mark-mode nil))
- (yank-advised-indent-function (region-beginning) (region-end)))))
- (defun yank-unindented ()
- (interactive)
- (yank 1))
- ;; toggle quotes
- (defun current-quotes-char ()
- (nth 3 (syntax-ppss)))
- (defalias 'point-is-in-string-p 'current-quotes-char)
- (defun move-point-forward-out-of-string ()
- (while (point-is-in-string-p) (forward-char)))
- (defun move-point-backward-out-of-string ()
- (while (point-is-in-string-p) (backward-char)))
- (defun alternate-quotes-char ()
- (if (eq ?' (current-quotes-char)) ?\" ?'))
- (defun toggle-quotes ()
- (interactive)
- (if (point-is-in-string-p)
- (let ((old-quotes (char-to-string (current-quotes-char)))
- (new-quotes (char-to-string (alternate-quotes-char)))
- (start (make-marker))
- (end (make-marker)))
- (save-excursion
- (move-point-forward-out-of-string)
- (backward-delete-char 1)
- (set-marker end (point))
- (insert new-quotes)
- (move-point-backward-out-of-string)
- (delete-char 1)
- (insert new-quotes)
- (set-marker start (point))
- (replace-string new-quotes (concat "\\" new-quotes) nil start end)
- (replace-string (concat "\\" old-quotes) old-quotes nil start end)))
- (error "Point isn't in a string")))
- ;; kill region if active, otherwise kill backward word
- (defun kill-region-or-backward-word ()
- (interactive)
- (if (region-active-p)
- (kill-region (region-beginning) (region-end))
- (backward-kill-word 1)))
- (defun kill-to-beginning-of-line ()
- (interactive)
- (kill-region (save-excursion (beginning-of-line) (point))
- (point)))
- ;; copy region if active
- ;; otherwise copy to end of current line
- ;; * with prefix, copy N whole lines
- (defun copy-to-end-of-line ()
- (interactive)
- (kill-ring-save (point)
- (line-end-position))
- (message "Copied to end of line"))
- (defun copy-line-or-region ()
- "Copy current line, or current text selection."
- (interactive)
- (if (region-active-p)
- (kill-ring-save (region-beginning) (region-end))
- (kill-ring-save (line-beginning-position) (line-beginning-position 2)) ) )
- (defun copy-whole-lines (arg)
- "Copy lines (as many as prefix argument) in the kill ring"
- (interactive "p")
- (kill-ring-save (line-beginning-position)
- (line-beginning-position (+ 1 arg)))
- (message "%d line%s copied" arg (if (= 1 arg) "" "s")))
- (defun copy-line (arg)
- "Copy to end of line, or as many lines as prefix argument"
- (interactive "P")
- (if (null arg)
- (copy-to-end-of-line)
- (copy-whole-lines (prefix-numeric-value arg))))
- (defun save-region-or-current-line (arg)
- (interactive "P")
- (if (region-active-p)
- (kill-ring-save (region-beginning) (region-end))
- (copy-line arg)))
- (defun kill-and-retry-line ()
- "Kill the entire current line and reposition point at indentation"
- (interactive)
- (back-to-indentation)
- (kill-line))
- (defun select-current-line ()
- "Select the current line"
- (interactive)
- (end-of-line) ; move to end of line
- (set-mark (line-beginning-position)))
- (defun camelize-buffer ()
- (interactive)
- (goto-char 0)
- (ignore-errors
- (replace-next-underscore-with-camel 0))
- (goto-char 0))
- (defun comment-or-uncomment-current-line ()
- (interactive)
- (comment-or-uncomment-region (line-beginning-position) (line-end-position)))
- (defun comment-dwim-line (&optional arg)
- "Replacement for the comment-dwim command.
- If no region is selected and current line is not blank and we are not at the end of the line,
- then comment current line.
- Replaces default behaviour of comment-dwim, when it inserts comment at the end of the line.
- From: http://www.emacswiki.org/emacs/CommentingCode"
- (interactive "*P")
- (comment-normalize-vars)
- (if (and (not (region-active-p)) (not (looking-at "[ \t]*$")))
- (comment-or-uncomment-region (line-beginning-position) (line-end-position))
- (comment-dwim arg)))
- (defun comment-kill-all ()
- "kill all comments in buffer"
- (interactive)
- (save-excursion
- (goto-char (point-min))
- (comment-kill (save-excursion
- (goto-char (point-max))
- (line-number-at-pos)))))
- (defun incs (s &optional num)
- (let* ((inc (or num 1))
- (new-number (number-to-string (+ inc (string-to-number s))))
- (zero-padded? (s-starts-with? "0" s)))
- (if zero-padded?
- (s-pad-left (length s) "0" new-number)
- new-number)))
- (defun change-number-at-point (arg)
- (interactive "p")
- (unless (or (looking-at "[0-9]")
- (looking-back "[0-9]"))
- (error "No number to change at point"))
- (save-excursion
- (while (looking-back "[0-9]")
- (forward-char -1))
- (re-search-forward "[0-9]+" nil)
- (replace-match (incs (match-string 0) arg) nil nil)))
- (defun subtract-number-at-point (arg)
- (interactive "p")
- (change-number-at-point (- arg)))
- (defun replace-next-underscore-with-camel (arg)
- (interactive "p")
- (if (> arg 0)
- (setq arg (1+ arg))) ; 1-based index to get eternal loop with 0
- (let ((case-fold-search nil))
- (while (not (= arg 1))
- (search-forward-regexp "\\b_[a-z]")
- (forward-char -2)
- (delete-char 1)
- (capitalize-word 1)
- (setq arg (1- arg)))))
- (defun snakeify-current-word ()
- (interactive)
- (er/mark-word)
- (let* ((beg (region-beginning))
- (end (region-end))
- (current-word (buffer-substring-no-properties beg end))
- (snakified (snake-case current-word)))
- (replace-string current-word snakified nil beg end)))
- (defun transpose-params ()
- "Presumes that params are in the form (p, p, p) or {p, p, p} or [p, p, p]"
- (interactive)
- (let* ((end-of-first (cond
- ((looking-at ", ") (point))
- ((and (looking-back ",") (looking-at " ")) (- (point) 1))
- ((looking-back ", ") (- (point) 2))
- (t (error "Place point between params to transpose."))))
- (start-of-first (save-excursion
- (goto-char end-of-first)
- (move-backward-out-of-param)
- (point)))
- (start-of-last (+ end-of-first 2))
- (end-of-last (save-excursion
- (goto-char start-of-last)
- (move-forward-out-of-param)
- (point))))
- (transpose-regions start-of-first end-of-first start-of-last end-of-last)))
- (defun move-forward-out-of-param ()
- (while (not (looking-at ")\\|, \\| ?}\\| ?\\]"))
- (cond
- ((point-is-in-string-p) (move-point-forward-out-of-string))
- ((looking-at "(\\|{\\|\\[") (forward-list))
- (t (forward-char)))))
- (defun move-backward-out-of-param ()
- (while (not (looking-back "(\\|, \\|{ ?\\|\\[ ?"))
- (cond
- ((point-is-in-string-p) (move-point-backward-out-of-string))
- ((looking-back ")\\|}\\|\\]") (backward-list))
- (t (backward-char)))))
- (autoload 'zap-up-to-char "misc"
- "Kill up to, but not including ARGth occurrence of CHAR.")
- (defun css-expand-statement ()
- (interactive)
- (save-excursion
- (end-of-line)
- (search-backward "{")
- (forward-char 1)
- (let ((beg (point)))
- (newline)
- (er/mark-inside-pairs)
- (replace-regexp ";" ";\n" nil (region-beginning) (region-end))
- (indent-region beg (point)))))
- (defun css-contract-statement ()
- (interactive)
- (end-of-line)
- (search-backward "{")
- (while (not (looking-at "}"))
- (join-line -1))
- (back-to-indentation))
- (provide 'editing-defuns)
|