Function: widget-narrow-to-field

widget-narrow-to-field is an interactive and byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-narrow-to-field)

Documentation

Narrow to field.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-narrow-to-field ()
  "Narrow to field."
  (interactive)
  (let ((field (widget-field-find (point))))
    (if field
	(narrow-to-region (line-beginning-position) (line-end-position)))))