Function: wdired-next-line

wdired-next-line is an interactive and byte-compiled function defined in wdired.el.gz.

Signature

(wdired-next-line ARG)

Documentation

Move down lines then position at filename or the current column.

See wdired-use-dired-vertical-movement. Optional prefix ARG says how many lines to move; default is one line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/wdired.el.gz
(defun wdired-next-line (arg)
  "Move down lines then position at filename or the current column.
See `wdired-use-dired-vertical-movement'.  Optional prefix ARG
says how many lines to move; default is one line."
  (interactive "^p")
  (setq this-command 'next-line)       ;Let `line-move' preserve the column.
  (with-no-warnings (next-line arg))
  (if (or (eq wdired-use-dired-vertical-movement t)
	  (and wdired-use-dired-vertical-movement
	       (< (current-column)
		  (save-excursion (dired-move-to-filename)
				  (current-column)))))
      (dired-move-to-filename)))