• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/

Lines Matching +defs:kill +defs:append

74 ;; C-c C-u comint-kill-input		    ^u
75 ;; C-c C-w backward-kill-word ^w
93 ;; comint-kill-subjob No mercy.
184 `comint-kill-whole-line' or `comint-kill-region' with no
191 (define-key comint-mode-map \"\\C-w\" 'comint-kill-region)
193 'comint-kill-whole-line)))
196 you might wish to use another binding for `comint-kill-whole-line'."
436 `(process-kill-without-query)'). In contrast, the `comint-mode-hook' is only
458 (define-key map "\C-c\C-u" 'comint-kill-input)
459 (define-key map "\C-c\C-w" 'backward-kill-word)
492 (define-key map [menu-bar inout append-output-to-file]
493 '("Append Current Output Group to File" . comint-append-output-to-file))
504 (define-key map [menu-bar inout kill-input]
505 '("Kill Current Input" . comint-kill-input))
532 (define-key signals-map [kill] '("KILL" . comint-kill-subjob))
538 (setq menu-bar-final-items (append '(completion inout signals)
917 (kill-buffer history-buf))
950 (kill-buffer nil))))))
1117 ;; Can't use kill-region as it sets this-command
2087 (define-obsolete-function-alias 'comint-kill-output
2090 (defun comint-write-output (filename &optional append mustbenew)
2115 append nil nil mustbenew)))
2119 (defun comint-append-output-to-file (filename)
2155 (defun comint-kill-subjob ()
2156 "Send kill signal to the current subjob.
2161 (kill-process nil comint-ptyp))
2203 (defun comint-kill-input ()
2208 (kill-region pmark (point)))))
2397 (defun comint-kill-whole-line (&optional count)
2399 With prefix arg COUNT, kill that many lines starting from the current line.
2400 If COUNT is negative, kill backward. Also kill the preceding newline,
2403 If COUNT is zero, kill current line but exclude the trailing newline.
2408 (kill-whole-line count)
2411 (defun comint-kill-region (beg end &optional yank-handler)
2412 "Like `kill-region', but ignores read-only properties, if safe.
2422 the case, this command just calls `kill-region' with all
2439 (kill-region beg end yank-handler)
2441 (kill-region beg end yank-handler)
3484 ;; kill-shell-input comint-kill-input
3488 ;; kill-shell-subjob comint-kill-subjob
3489 ;; kill-output-from-shell comint-delete-output