(reftex-isearch-switch-to-next-file):
[bpt/emacs.git] / lisp / misc.el
CommitLineData
896546cd 1;;; misc.el --- some nonstandard basic editing commands for Emacs
6594deb0 2
c90f2757 3;; Copyright (C) 1989, 2001, 2002, 2003, 2004, 2005,
409cc4a3 4;; 2006, 2007, 2008 Free Software Foundation, Inc.
0d20f9a0 5
9750e079 6;; Maintainer: FSF
30764597 7;; Keywords: convenience
9750e079 8
0d20f9a0
JB
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
0d20f9a0 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
0d20f9a0
JB
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
0d20f9a0 23
55535639
PJ
24;;; Commentary:
25
e5167999 26;;; Code:
0d20f9a0
JB
27
28(defun copy-from-above-command (&optional arg)
29 "Copy characters from previous nonblank line, starting just above point.
30Copy ARG characters, but not past the end of that line.
31If no argument given, copy the entire rest of the line.
32The characters copied are inserted in the buffer before point."
33 (interactive "P")
34 (let ((cc (current-column))
35 n
36 (string ""))
37 (save-excursion
38 (beginning-of-line)
39 (backward-char 1)
40 (skip-chars-backward "\ \t\n")
41 (move-to-column cc)
42 ;; Default is enough to copy the whole rest of the line.
43 (setq n (if arg (prefix-numeric-value arg) (point-max)))
44 ;; If current column winds up in middle of a tab,
45 ;; copy appropriate number of "virtual" space chars.
46 (if (< cc (current-column))
47 (if (= (preceding-char) ?\t)
48 (progn
ff26cdfe 49 (setq string (make-string (min n (- (current-column) cc)) ?\s))
0d20f9a0
JB
50 (setq n (- n (min n (- (current-column) cc)))))
51 ;; In middle of ctl char => copy that whole char.
52 (backward-char 1)))
53 (setq string (concat string
54 (buffer-substring
55 (point)
56 (min (save-excursion (end-of-line) (point))
57 (+ n (point)))))))
58 (insert string)))
6594deb0 59
2fd8a18a
LK
60;; Variation of `zap-to-char'.
61
62(defun zap-up-to-char (arg char)
821a311f 63 "Kill up to, but not including ARGth occurrence of CHAR.
2fd8a18a
LK
64Case is ignored if `case-fold-search' is non-nil in the current buffer.
65Goes backward if ARG is negative; error if CHAR not found.
66Ignores CHAR at point."
67 (interactive "p\ncZap up to char: ")
68 (let ((direction (if (>= arg 0) 1 -1)))
69 (kill-region (point)
70 (progn
71 (forward-char direction)
72 (unwind-protect
73 (search-forward (char-to-string char) nil nil arg)
74 (backward-char direction))
75 (point)))))
76
9bccd1e3
JB
77;; These were added with an eye to making possible a more CCA-compatible
78;; command set; but that turned out not to be interesting.
79
80(defun mark-beginning-of-buffer ()
81 "Set mark at the beginning of the buffer."
82 (interactive)
83 (push-mark (point-min)))
84
85(defun mark-end-of-buffer ()
86 "Set mark at the end of the buffer."
87 (interactive)
88 (push-mark (point-max)))
89
90(defun upcase-char (arg)
2fd8a18a 91 "Uppercasify ARG chars starting from point. Point doesn't move."
9bccd1e3
JB
92 (interactive "p")
93 (save-excursion
94 (upcase-region (point) (progn (forward-char arg) (point)))))
95
96(defun forward-to-word (arg)
97 "Move forward until encountering the beginning of a word.
98With argument, do this that many times."
99 (interactive "p")
100 (or (re-search-forward (if (> arg 0) "\\W\\b" "\\b\\W") nil t arg)
101 (goto-char (if (> arg 0) (point-max) (point-min)))))
102
103(defun backward-to-word (arg)
104 "Move backward until encountering the end of a word.
105With argument, do this that many times."
106 (interactive "p")
107 (forward-to-word (- arg)))
108
896546cd
RS
109(provide 'misc)
110
cbee283d 111;; arch-tag: 908f7884-c19e-4388-920c-9cfa425e449b
6594deb0 112;;; misc.el ends here