Function: vip-info-on-file

vip-info-on-file is an interactive and byte-compiled function defined in vip.el.gz.

Signature

(vip-info-on-file)

Documentation

Give information of the file associated to the current buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
(defun vip-info-on-file ()
  "Give information of the file associated to the current buffer."
  (interactive)
  (message "\"%s\" line %d of %d"
	   (if (buffer-file-name) (buffer-file-name) "")
	   (1+ (count-lines (point-min) (point)))
	   (1+ (count-lines (point-min) (point-max)))))