Merge from emacs-23
[bpt/emacs.git] / lisp / progmodes / subword.el
CommitLineData
653d1554 1;;; subword.el --- Handling capitalized subwords in a nomenclature
0386b551 2
5df4f04c 3;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
0386b551
AM
4
5;; Author: Masatake YAMATO
6
b1fc2b50
GM
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software: you can redistribute it and/or modify
0386b551 10;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
11;; the Free Software Foundation, either version 3 of the License, or
12;; (at your option) any later version.
0386b551 13
b1fc2b50 14;; GNU Emacs is distributed in the hope that it will be useful,
0386b551
AM
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
b1fc2b50 20;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
0386b551
AM
21
22;;; Commentary:
23
653d1554
TH
24;; This package was cc-submode.el before it was recognized being
25;; useful in general and not tied to C and c-mode at all.
26
0386b551 27;; This package provides `subword' oriented commands and a minor mode
653d1554 28;; (`subword-mode') that substitutes the common word handling
0386b551
AM
29;; functions with them.
30
31;; In spite of GNU Coding Standards, it is popular to name a symbol by
32;; mixing uppercase and lowercase letters, e.g. "GtkWidget",
33;; "EmacsFrameClass", "NSGraphicsContext", etc. Here we call these
34;; mixed case symbols `nomenclatures'. Also, each capitalized (or
35;; completely uppercase) part of a nomenclature is called a `subword'.
36;; Here are some examples:
37
38;; Nomenclature Subwords
39;; ===========================================================
40;; GtkWindow => "Gtk" and "Window"
41;; EmacsFrameClass => "Emacs", "Frame" and "Class"
42;; NSGraphicsContext => "NS", "Graphics" and "Context"
43
44;; The subword oriented commands defined in this package recognize
45;; subwords in a nomenclature to move between them and to edit them as
46;; words.
47
48;; In the minor mode, all common key bindings for word oriented
49;; commands are overridden by the subword oriented commands:
50
51;; Key Word oriented command Subword oriented command
52;; ============================================================
a9b76eec
TH
53;; M-f `forward-word' `subword-forward'
54;; M-b `backward-word' `subword-backward'
55;; M-@ `mark-word' `subword-mark'
56;; M-d `kill-word' `subword-kill'
57;; M-DEL `backward-kill-word' `subword-backward-kill'
58;; M-t `transpose-words' `subword-transpose'
59;; M-c `capitalize-word' `subword-capitalize'
60;; M-u `upcase-word' `subword-upcase'
61;; M-l `downcase-word' `subword-downcase'
0386b551
AM
62;;
63;; Note: If you have changed the key bindings for the word oriented
64;; commands in your .emacs or a similar place, the keys you've changed
65;; to are also used for the corresponding subword oriented commands.
66
67;; To make the mode turn on automatically, put the following code in
68;; your .emacs:
69;;
70;; (add-hook 'c-mode-common-hook
653d1554 71;; (lambda () (subword-mode 1)))
0386b551
AM
72;;
73
74;; Acknowledgment:
75;; The regular expressions to detect subwords are mostly based on
76;; the old `c-forward-into-nomenclature' originally contributed by
77;; Terry_Glanfield dot Southern at rxuk dot xerox dot com.
78
1ddb2ea0 79;; TODO: ispell-word.
0386b551
AM
80
81;;; Code:
82
653d1554 83(defvar subword-mode-map
27558c0d 84 (let ((map (make-sparse-keymap)))
653d1554
TH
85 (dolist (cmd '(forward-word backward-word mark-word kill-word
86 backward-kill-word transpose-words
27558c0d
GM
87 capitalize-word upcase-word downcase-word))
88 (let ((othercmd (let ((name (symbol-name cmd)))
9ee12eee
TH
89 (string-match "\\([[:alpha:]-]+\\)-word[s]?" name)
90 (intern (concat "subword-" (match-string 1 name))))))
653d1554 91 (define-key map (vector 'remap cmd) othercmd)))
27558c0d 92 map)
653d1554 93 "Keymap used in `subword-mode' minor mode.")
27558c0d
GM
94
95;;;###autoload
653d1554 96(define-minor-mode subword-mode
27558c0d 97 "Mode enabling subword movement and editing keys.
0386b551
AM
98In spite of GNU Coding Standards, it is popular to name a symbol by
99mixing uppercase and lowercase letters, e.g. \"GtkWidget\",
100\"EmacsFrameClass\", \"NSGraphicsContext\", etc. Here we call these
101mixed case symbols `nomenclatures'. Also, each capitalized (or
102completely uppercase) part of a nomenclature is called a `subword'.
103Here are some examples:
104
105 Nomenclature Subwords
106 ===========================================================
107 GtkWindow => \"Gtk\" and \"Window\"
108 EmacsFrameClass => \"Emacs\", \"Frame\" and \"Class\"
109 NSGraphicsContext => \"NS\", \"Graphics\" and \"Context\"
110
111The subword oriented commands activated in this minor mode recognize
112subwords in a nomenclature to move between subwords and to edit them
113as words.
114
653d1554 115\\{subword-mode-map}"
0386b551
AM
116 nil
117 nil
653d1554
TH
118 subword-mode-map)
119
120(define-obsolete-function-alias 'c-subword-mode 'subword-mode "23.2")
0386b551 121
653d1554
TH
122;;;###autoload
123(define-global-minor-mode global-subword-mode subword-mode
124 (lambda () (subword-mode 1)))
125
a9b76eec 126(defun subword-forward (&optional arg)
0386b551 127 "Do the same as `forward-word' but on subwords.
653d1554 128See the command `subword-mode' for a description of subwords.
0386b551
AM
129Optional argument ARG is the same as for `forward-word'."
130 (interactive "p")
131 (unless arg (setq arg 1))
0386b551
AM
132 (cond
133 ((< 0 arg)
134 (dotimes (i arg (point))
a9b76eec 135 (subword-forward-internal)))
0386b551
AM
136 ((> 0 arg)
137 (dotimes (i (- arg) (point))
a9b76eec 138 (subword-backward-internal)))
0386b551
AM
139 (t
140 (point))))
141
a9b76eec 142(put 'subword-forward 'CUA 'move)
5e8c9892 143
a9b76eec 144(defun subword-backward (&optional arg)
0386b551 145 "Do the same as `backward-word' but on subwords.
653d1554 146See the command `subword-mode' for a description of subwords.
0386b551
AM
147Optional argument ARG is the same as for `backward-word'."
148 (interactive "p")
a9b76eec 149 (subword-forward (- (or arg 1))))
0386b551 150
a9b76eec 151(defun subword-mark (arg)
0386b551 152 "Do the same as `mark-word' but on subwords.
653d1554 153See the command `subword-mode' for a description of subwords.
0386b551
AM
154Optional argument ARG is the same as for `mark-word'."
155 ;; This code is almost copied from `mark-word' in GNU Emacs.
156 (interactive "p")
157 (cond ((and (eq last-command this-command) (mark t))
158 (set-mark
159 (save-excursion
160 (goto-char (mark))
a9b76eec 161 (subword-forward arg)
0386b551
AM
162 (point))))
163 (t
164 (push-mark
165 (save-excursion
a9b76eec 166 (subword-forward arg)
0386b551
AM
167 (point))
168 nil t))))
169
a9b76eec 170(put 'subword-backward 'CUA 'move)
5e8c9892 171
a9b76eec 172(defun subword-kill (arg)
0386b551 173 "Do the same as `kill-word' but on subwords.
653d1554 174See the command `subword-mode' for a description of subwords.
0386b551
AM
175Optional argument ARG is the same as for `kill-word'."
176 (interactive "p")
a9b76eec 177 (kill-region (point) (subword-forward arg)))
0386b551 178
a9b76eec 179(defun subword-backward-kill (arg)
0386b551 180 "Do the same as `backward-kill-word' but on subwords.
653d1554 181See the command `subword-mode' for a description of subwords.
0386b551
AM
182Optional argument ARG is the same as for `backward-kill-word'."
183 (interactive "p")
a9b76eec 184 (subword-kill (- arg)))
0386b551 185
a9b76eec 186(defun subword-transpose (arg)
0386b551 187 "Do the same as `transpose-words' but on subwords.
653d1554 188See the command `subword-mode' for a description of subwords.
0386b551
AM
189Optional argument ARG is the same as for `transpose-words'."
190 (interactive "*p")
a9b76eec 191 (transpose-subr 'subword-forward arg))
287787ee 192
a9b76eec 193(defun subword-downcase (arg)
287787ee 194 "Do the same as `downcase-word' but on subwords.
653d1554 195See the command `subword-mode' for a description of subwords.
287787ee
MY
196Optional argument ARG is the same as for `downcase-word'."
197 (interactive "p")
198 (let ((start (point)))
a9b76eec 199 (downcase-region (point) (subword-forward arg))
653d1554 200 (when (< arg 0)
287787ee
MY
201 (goto-char start))))
202
a9b76eec 203(defun subword-upcase (arg)
287787ee 204 "Do the same as `upcase-word' but on subwords.
653d1554 205See the command `subword-mode' for a description of subwords.
287787ee
MY
206Optional argument ARG is the same as for `upcase-word'."
207 (interactive "p")
208 (let ((start (point)))
a9b76eec 209 (upcase-region (point) (subword-forward arg))
653d1554 210 (when (< arg 0)
287787ee
MY
211 (goto-char start))))
212
a9b76eec 213(defun subword-capitalize (arg)
0386b551 214 "Do the same as `capitalize-word' but on subwords.
653d1554 215See the command `subword-mode' for a description of subwords.
0386b551
AM
216Optional argument ARG is the same as for `capitalize-word'."
217 (interactive "p")
218 (let ((count (abs arg))
11d13e96
MY
219 (start (point))
220 (advance (if (< arg 0) nil t)))
0386b551 221 (dotimes (i count)
11d13e96
MY
222 (if advance
223 (progn (re-search-forward
653d1554 224 (concat "[[:alpha:]]")
11d13e96
MY
225 nil t)
226 (goto-char (match-beginning 0)))
a9b76eec 227 (subword-backward))
0386b551
AM
228 (let* ((p (point))
229 (pp (1+ p))
a9b76eec 230 (np (subword-forward)))
0386b551
AM
231 (upcase-region p pp)
232 (downcase-region pp np)
11d13e96
MY
233 (goto-char (if advance np p))))
234 (unless advance
235 (goto-char start))))
0386b551 236
0386b551
AM
237
238\f
239;;
240;; Internal functions
241;;
a9b76eec 242(defun subword-forward-internal ()
0386b551 243 (if (and
5e8c9892 244 (save-excursion
0386b551 245 (let ((case-fold-search nil))
5e8c9892 246 (re-search-forward
653d1554 247 (concat "\\W*\\(\\([[:upper:]]*\\W?\\)[[:lower:][:digit:]]*\\)")
0386b551 248 nil t)))
653d1554 249 (> (match-end 0) (point)))
5e8c9892 250 (goto-char
0386b551
AM
251 (cond
252 ((< 1 (- (match-end 2) (match-beginning 2)))
253 (1- (match-end 2)))
254 (t
255 (match-end 0))))
256 (forward-word 1)))
257
258
a9b76eec 259(defun subword-backward-internal ()
5e8c9892
KS
260 (if (save-excursion
261 (let ((case-fold-search nil))
0386b551
AM
262 (re-search-backward
263 (concat
653d1554 264 "\\(\\(\\W\\|[[:lower:][:digit:]]\\)\\([[:upper:]]+\\W*\\)"
5e8c9892 265 "\\|\\W\\w+\\)")
0386b551 266 nil t)))
5e8c9892
KS
267 (goto-char
268 (cond
0386b551
AM
269 ((and (match-end 3)
270 (< 1 (- (match-end 3) (match-beginning 3)))
271 (not (eq (point) (match-end 3))))
272 (1- (match-end 3)))
273 (t
274 (1+ (match-beginning 0)))))
275 (backward-word 1)))
276
277\f
653d1554 278(provide 'subword)
0386b551 279
964f5b2b 280;; arch-tag: b8a01202-8a52-4a71-ae0a-d753fafd67ef
653d1554 281;;; subword.el ends here