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

Lines Matching +defs:backward +defs:word

442     (if flag (backward-char 1))
576 (if (re-search-backward "[^ \t\n]" nil t)
604 (skip-syntax-backward "-" (save-excursion (forward-line 0) (point)))
685 (defun backward-to-indentation (&optional arg)
686 "Move backward ARG lines and position at first nonblank character."
697 (backward-prefix-chars))
711 (defun delete-horizontal-space (&optional backward-only)
717 (if backward-only
723 (skip-chars-backward " \t")
730 (skip-chars-backward " \t")
828 (skip-chars-backward "0-9")
1963 (backward-char 1))
2318 ;; For backward compatibility, minus with no modifiers is an ordinary
2767 With argument, rotate that many kills forward (or backward, if negative)."
2780 ;; Internal subroutine of backward-delete-char
2781 (defun kill-backward-chars (arg)
2786 (defcustom backward-delete-char-untabify-method 'untabify
2787 "*The method for untabifying when deleting backward.
2796 (defun backward-delete-char-untabify (arg &optional killp)
2797 "Delete characters backward, changing tabs into spaces.
2798 The exact behavior depends on `backward-delete-char-untabify-method'.
2803 (when (eq backward-delete-char-untabify-method 'untabify)
2815 (delete-backward-char
2816 (let ((skip (cond ((eq backward-delete-char-untabify-method 'hungry) " \t")
2817 ((eq backward-delete-char-untabify-method 'all)
2820 (let ((wh (- (point) (save-excursion (skip-chars-backward skip)
2829 Goes backward if ARG is negative; error if CHAR not found."
2848 Negative arguments kill lines backward.
2899 If arg is negative, kill backward. Also kill the preceding newline.
2925 (unless (bobp) (backward-char))
2935 If ARG is negative, move backward -ARG lines.
3508 ;; Move backward (up).
3755 (backward-char)
3760 ;; If going backward, don't accept the previous
3840 (backward-char 1)))
3845 (backward-char 1)
3873 (skip-chars-backward "^\n")
3876 (skip-chars-backward "^\n"))
3980 and drag it forward past ARG other characters (backward if ARG negative).
3988 With prefix arg ARG, effect is to take word before or around point
3989 and drag it forward past ARG other words (backward if ARG negative).
3994 (transpose-subr 'forward-word arg))
4015 'skip-syntax-backward 'skip-syntax-forward)
4021 (funcall (if (> arg 0) 'skip-syntax-backward 'skip-syntax-forward) " .")
4026 'skip-syntax-backward)
4093 (defun backward-word (&optional arg)
4094 "Move backward until encountering the beginning of a word.
4097 (forward-word (- (or arg 1))))
4099 (defun mark-word (&optional arg allow-extend)
4101 The place mark goes is the same place \\[forward-word] would
4115 (forward-word arg)
4120 (forward-word (prefix-numeric-value arg))
4124 (defun kill-word (arg)
4125 "Kill characters forward until encountering the end of a word.
4128 (kill-region (point) (progn (forward-word arg) (point))))
4130 (defun backward-kill-word (arg)
4131 "Kill characters backward until encountering the beginning of a word.
4134 (kill-word (- arg)))
4136 (defun current-word (&optional strict really-word)
4137 "Return the symbol or word that point is on (or a nearby one) as a string.
4140 or adjacent to a symbol or word. In all cases the value can be nil
4141 if there is no word nearby.
4143 If optional arg REALLY-WORD is non-nil, it finds just a word."
4146 (syntaxes (if really-word "w" "w_"))
4148 (skip-syntax-backward syntaxes) (setq start (point))
4152 ;; Point is neither within nor adjacent to a word.
4154 ;; Look for preceding word in same line.
4155 (skip-syntax-backward not-syntaxes
4159 ;; No preceding word in same line.
4160 ;; Look for following word in same line.
4169 (skip-syntax-backward syntaxes)
4221 (save-excursion (backward-paragraph 1) (point))
4268 (skip-chars-backward " \t")
4501 (skip-syntax-backward "/\\")
4552 (skip-chars-backward " \t")
4566 (skip-chars-backward "\n \t")
4570 (skip-chars-backward "\n \t")
4573 (skip-chars-backward " \t")
4607 "Exit the current \"mode\" (in a generalized sense of the word).
4912 With prefix argument N, move N items (negative N means move backward)."
5149 (skip-chars-backward completion-root-regexp)
5485 ;; backward and, and the Delete key for deleting forward.
5488 "If non-nil, Delete key deletes forward and Backspace key deletes backward.
5494 delete backward, and Delete can be used to delete forward.
5531 forward, C-Delete is bound to `kill-word', but if Delete is remapped
5532 to DEL, which deletes backward, C-Delete is bound to
5533 `backward-kill-word'.
5594 (if normal-erase-is-backspace "forward" "backward"))))