mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
* lisp/emulation/cua-base.el (cua-mode): * lisp/mail/footnote.el (footnote-mode): * lisp/mail/mailabbrev.el (mail-abbrevs-mode): * lisp/net/xesam.el (xesam-minor-mode): * lisp/progmodes/bug-reference.el (bug-reference-mode): * lisp/progmodes/cap-words.el (capitalized-words-mode): * lisp/progmodes/compile.el (compilation-minor-mode) (compilation-shell-minor-mode): * lisp/progmodes/gud.el (gud-tooltip-mode): * lisp/progmodes/hideif.el (hide-ifdef-mode): * lisp/progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode): * lisp/progmodes/subword.el (subword-mode): * lisp/progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode): * lisp/progmodes/which-func.el (which-function-mode): * lisp/term/tvi970.el (tvi970-set-keypad-mode): * lisp/term/vt100.el (vt100-wide-mode): * lisp/textmodes/flyspell.el (flyspell-mode): * lisp/textmodes/ispell.el (ispell-minor-mode): * lisp/textmodes/nroff-mode.el (nroff-electric-mode): * lisp/textmodes/paragraphs.el (use-hard-newlines): * lisp/textmodes/refill.el (refill-mode): * lisp/textmodes/reftex.el (reftex-mode): * lisp/textmodes/rst.el (rst-minor-mode): * lisp/textmodes/sgml-mode.el (html-autoview-mode) (sgml-electric-tag-pair-mode): * lisp/textmodes/tex-mode.el (latex-electric-env-pair-mode): * lisp/vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode): * lisp/emulation/crisp.el (crisp-mode): * lisp/emacs-lisp/eldoc.el (eldoc-mode): * lisp/emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new minor mode behavior. * lisp/erc/erc-fill.el (erc-fill-mode): * lisp/erc/erc-track.el (erc-track-minor-mode): Doc fix. * lisp/erc/erc.el (define-erc-module): Fix autogenerated docstring to reflect Emacs 24 minor mode changes. * lisp/gnus/gnus-cite.el (gnus-message-citation-mode): Doc fix (in Emacs 24, calling a minor mode from Lisp with nil arg enables it, so we have to make the working a bit ambiguous here).
98 lines
3.5 KiB
EmacsLisp
98 lines
3.5 KiB
EmacsLisp
;;; cap-words.el --- minor mode for motion in CapitalizedWordIdentifiers
|
|
|
|
;; Copyright (C) 2002-2011 Free Software Foundation, Inc.
|
|
|
|
;; Author: Dave Love <fx@gnu.org>
|
|
;; Keywords: languages
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Provides Capitalized Words minor mode for word movement in
|
|
;; identifiers CapitalizedLikeThis.
|
|
|
|
;; Note that the same effect could be obtained by frobbing the
|
|
;; category of upper case characters to produce word boundaries, but
|
|
;; the necessary processing isn't done for ASCII characters.
|
|
|
|
;; Fixme: This doesn't work properly for mouse double clicks.
|
|
|
|
;;; Code:
|
|
|
|
(defun capitalized-find-word-boundary (pos limit)
|
|
"Function for use in `find-word-boundary-function-table'.
|
|
Looks for word boundaries before capitals."
|
|
(save-excursion
|
|
(goto-char pos)
|
|
(let (case-fold-search)
|
|
(if (<= pos limit)
|
|
;; Fixme: Are these regexps the best?
|
|
(or (and (re-search-forward "\\=.\\w*[[:upper:]]"
|
|
limit t)
|
|
(progn (backward-char)
|
|
t))
|
|
(re-search-forward "\\>" limit t))
|
|
(or (re-search-backward "[[:upper:]]\\w*\\=" limit t)
|
|
(re-search-backward "\\<" limit t))))
|
|
(point)))
|
|
|
|
|
|
(defconst capitalized-find-word-boundary-function-table
|
|
(let ((tab (make-char-table nil)))
|
|
(set-char-table-range tab t #'capitalized-find-word-boundary)
|
|
tab)
|
|
"Assigned to `find-word-boundary-function-table' in Capitalized Words mode.")
|
|
|
|
;;;###autoload
|
|
(define-minor-mode capitalized-words-mode
|
|
"Toggle Capitalized Words mode.
|
|
With a prefix argument ARG, enable Capitalized Words mode if ARG
|
|
is positive, and disable it otherwise. If called from Lisp,
|
|
enable the mode if ARG is omitted or nil.
|
|
|
|
Capitalized Words mode is a buffer-local minor mode. When
|
|
enabled, a word boundary occurs immediately before an uppercase
|
|
letter in a symbol. This is in addition to all the normal
|
|
boundaries given by the syntax and category tables. There is no
|
|
restriction to ASCII.
|
|
|
|
E.g. the beginning of words in the following identifier are as marked:
|
|
|
|
capitalizedWorDD
|
|
^ ^ ^^
|
|
|
|
Note that these word boundaries only apply for word motion and
|
|
marking commands such as \\[forward-word]. This mode does not affect word
|
|
boundaries found by regexp matching (`\\>', `\\w' &c).
|
|
|
|
This style of identifiers is common in environments like Java ones,
|
|
where underscores aren't trendy enough. Capitalization rules are
|
|
sometimes part of the language, e.g. Haskell, which may thus encourage
|
|
such a style. It is appropriate to add `capitalized-words-mode' to
|
|
the mode hook for programming language modes in which you encounter
|
|
variables like this, e.g. `java-mode-hook'. It's unlikely to cause
|
|
trouble if such identifiers aren't used.
|
|
|
|
See also `glasses-mode' and `studlify-word'.
|
|
Obsoletes `c-forward-into-nomenclature'."
|
|
nil " Caps" nil :group 'programming
|
|
(set (make-local-variable 'find-word-boundary-function-table)
|
|
capitalized-find-word-boundary-function-table))
|
|
|
|
(provide 'cap-words)
|
|
|
|
;;; cap-words.el ends here
|