Function: ido-delete-backward-word-updir

ido-delete-backward-word-updir is an interactive and byte-compiled function defined in ido.el.gz.

Signature

(ido-delete-backward-word-updir COUNT)

Documentation

Delete all chars backwards, or at beginning of buffer, go up one level.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-delete-backward-word-updir (count)
  "Delete all chars backwards, or at beginning of buffer, go up one level."
  (interactive "P")
  (if (= (minibuffer-prompt-end) (point))
      (if (not count)
	  (ido-up-directory t))
    (if (eq this-original-command 'viper-delete-backward-word)
	(funcall this-original-command (prefix-numeric-value count))
      (backward-kill-word (prefix-numeric-value count)))))