• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/emulation/

Lines Matching +defs:backward +defs:word

129   (define-key vi-com-map "\C-b" 'vi-backward-windowful)
144 (define-key vi-com-map "\C-r" 'vi-isearch-backward) ; modification
168 (define-key vi-com-map "(" 'backward-sexp)
193 (define-key vi-com-map "?" 'vi-search-backward)
197 (define-key vi-com-map "B" 'vi-backward-blank-delimited-word)
200 (define-key vi-com-map "E" 'vi-end-of-blank-delimited-word)
201 (define-key vi-com-map "F" 'vi-backward-find-char)
215 (define-key vi-com-map "T" 'vi-backward-upto-char)
218 (define-key vi-com-map "W" 'vi-forward-blank-delimited-word)
232 (define-key vi-com-map "b" 'backward-word)
235 (define-key vi-com-map "e" 'vi-end-of-word)
238 (define-key vi-com-map "h" 'backward-char)
253 (define-key vi-com-map "w" 'vi-forward-word)
258 (define-key vi-com-map "{" 'backward-paragraph)
262 (define-key vi-com-map "\177" 'delete-backward-char))
264 (put 'backward-char 'point-moving-unit 'char)
269 (put 'vi-isearch-backward 'point-moving-unit 'search)
270 (put 'vi-search-backward 'point-moving-unit 'search)
277 (put 'backward-sexp 'point-moving-unit 'sexp)
286 (put 'vi-re-search-backward 'point-moving-unit 'search)
287 (put 'vi-backward-blank-delimited-word 'point-moving-unit 'WORD)
288 (put 'vi-end-of-blank-delimited-word 'point-moving-unit 'match)
289 (put 'vi-backward-find-char 'point-moving-unit 'find)
295 (put 'vi-backward-upto-char 'point-moving-unit 'find)
296 (put 'vi-forward-blank-delimited-word 'point-moving-unit 'WORD)
299 (put 'backward-word 'point-moving-unit 'word)
300 (put 'vi-end-of-word 'point-moving-unit 'match)
302 (put 'backward-char 'point-moving-unit 'char)
306 (put 'vi-forward-word 'point-moving-unit 'word)
309 (put 'backward-paragraph 'point-moving-unit 'paragraph)
314 (put 'mark-word 'point-moving-unit 'region)
363 (defvar vi-search-last-command nil ; (re-)search-forward(backward)
434 - The stopping positions for some point motion commands (word boundary,
442 - ^R is bound to incremental backward search, so use ^L to redraw screen.
666 (defun vi-isearch-backward (arg)
667 "Incremental search backward. Use regexp version if ARG is non-nil."
669 (let ((scmd (if arg 'isearch-backward-regexp 'isearch-backward))
674 (setq vi-search-last-command (if arg 're-search-backward 'search-backward)))))
686 (defun vi-search-backward (arg string)
687 "Nonincremental search backward. Use regexp version if ARG is non-nil."
691 (setq vi-search-last-command (if arg 're-search-backward 'search-backward))
705 '(re-search-forward re-search-backward))
720 '(re-search-forward re-search-backward))
725 (funcall (cond ((eq search-command 're-search-forward) 're-search-backward)
726 ((eq search-command 're-search-backward) 're-search-forward)
727 ((eq search-command 'search-forward) 'search-backward)
728 ((eq search-command 'search-backward) 'search-forward))
742 (defun vi-backward-kill-line ()
759 (defun vi-backward-windowful (count)
918 (defun vi-backward-find-char (count char)
919 "Find the COUNT'th CHAR backward on current line."
930 (defun vi-backward-upto-char (count char)
931 "Find upto the COUNT'th CHAR backward on current line."
942 (defun vi-end-of-word (count)
943 "Move forward until encountering the end of a word.
948 (backward-char)))
1209 (cond ((looking-at "[[({]") (forward-sexp 1) (backward-char 1))
1210 ((looking-at "[])}]") (forward-char 1) (backward-sexp 1))
1213 (defun vi-backward-blank-delimited-word (count)
1216 (if (re-search-backward "[ \t\n\`][^ \t\n\`]+" nil t count)
1219 (defun vi-forward-blank-delimited-word (count)
1223 (if (not (eobp)) (backward-char 1))))
1225 (defun vi-end-of-blank-delimited-word (count)
1226 "Forward to the end of the COUNT'th blank-delimited word."
1229 (if (not (eobp)) (backward-char 2))))
1249 (defun vi-forward-word (count)
1391 ((char-equal region ?w) (mark-word arg))
1412 ((char-equal unit ?w) (call-interactively 'spell-word))
1436 "Quote ARG words from the word point is on with pattern specified by CHAR.
1443 (if (not (looking-at "\\<")) (forward-word -1))
1450 (vi-end-of-word arg)
1460 (setq name (buffer-substring (progn (vi-backward-blank-delimited-word 1)
1463 (progn (vi-end-of-blank-delimited-word 1)
1465 (skip-chars-backward "^a-zA-Z")