Mercurial > emacs
annotate lisp/misc.el @ 89820:d3f959e6f594
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 12 Feb 2004 08:06:07 +0000 |
parents | 375f2633d815 |
children | 68c22ea6027c |
rev | line source |
---|---|
18383 | 1 ;;; misc.el --- some nonstandard basic editing commands for Emacs |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
35
diff
changeset
|
2 |
845 | 3 ;; Copyright (C) 1989 Free Software Foundation, Inc. |
4 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
5 ;; Maintainer: FSF |
45078 | 6 ;; Keywords: convenience |
35 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
35 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
35 | 24 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
25 ;;; Commentary: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
26 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
27 ;;; Code: |
35 | 28 |
29 (defun copy-from-above-command (&optional arg) | |
30 "Copy characters from previous nonblank line, starting just above point. | |
31 Copy ARG characters, but not past the end of that line. | |
32 If no argument given, copy the entire rest of the line. | |
33 The characters copied are inserted in the buffer before point." | |
34 (interactive "P") | |
35 (let ((cc (current-column)) | |
36 n | |
37 (string "")) | |
38 (save-excursion | |
39 (beginning-of-line) | |
40 (backward-char 1) | |
41 (skip-chars-backward "\ \t\n") | |
42 (move-to-column cc) | |
43 ;; Default is enough to copy the whole rest of the line. | |
44 (setq n (if arg (prefix-numeric-value arg) (point-max))) | |
45 ;; If current column winds up in middle of a tab, | |
46 ;; copy appropriate number of "virtual" space chars. | |
47 (if (< cc (current-column)) | |
48 (if (= (preceding-char) ?\t) | |
49 (progn | |
50 (setq string (make-string (min n (- (current-column) cc)) ?\ )) | |
51 (setq n (- n (min n (- (current-column) cc))))) | |
52 ;; In middle of ctl char => copy that whole char. | |
53 (backward-char 1))) | |
54 (setq string (concat string | |
55 (buffer-substring | |
56 (point) | |
57 (min (save-excursion (end-of-line) (point)) | |
58 (+ n (point))))))) | |
59 (insert string))) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
35
diff
changeset
|
60 |
51340
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
61 ;; These were added with an eye to making possible a more CCA-compatible |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
62 ;; command set; but that turned out not to be interesting. |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
63 |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
64 (defun mark-beginning-of-buffer () |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
65 "Set mark at the beginning of the buffer." |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
66 (interactive) |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
67 (push-mark (point-min))) |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
68 |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
69 (defun mark-end-of-buffer () |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
70 "Set mark at the end of the buffer." |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
71 (interactive) |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
72 (push-mark (point-max))) |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
73 |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
74 (defun upcase-char (arg) |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
75 "Uppercasify ARG chars starting from point. Point doesn't move" |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
76 (interactive "p") |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
77 (save-excursion |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
78 (upcase-region (point) (progn (forward-char arg) (point))))) |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
79 |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
80 (defun forward-to-word (arg) |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
81 "Move forward until encountering the beginning of a word. |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
82 With argument, do this that many times." |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
83 (interactive "p") |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
84 (or (re-search-forward (if (> arg 0) "\\W\\b" "\\b\\W") nil t arg) |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
85 (goto-char (if (> arg 0) (point-max) (point-min))))) |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
86 |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
87 (defun backward-to-word (arg) |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
88 "Move backward until encountering the end of a word. |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
89 With argument, do this that many times." |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
90 (interactive "p") |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
91 (forward-to-word (- arg))) |
bd66b46adcc8
(mark-beginning-of-buffer, mark-end-of-buffer, upcase-char, forward-to-word,
Juanma Barranquero <lekktu@gmail.com>
parents:
45078
diff
changeset
|
92 |
18383 | 93 (provide 'misc) |
94 | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
35
diff
changeset
|
95 ;;; misc.el ends here |