Function: kotl-mode:goto-line-relative
kotl-mode:goto-line-relative is an interactive and byte-compiled
function defined in kotl-mode.el.
Signature
(kotl-mode:goto-line-relative LINE &optional BUFFER)
Documentation
Go to LINE, counting from line at (point-min).
The line number is relative to the accessible portion of the narrowed
buffer. The argument BUFFER is the same as in the function goto-line.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:goto-line-relative (line &optional buffer)
"Go to LINE, counting from line at (point-min).
The line number is relative to the accessible portion of the narrowed
buffer. The argument BUFFER is the same as in the function `goto-line'."
(declare (interactive-only forward-line))
(interactive (goto-line-read-args t))
(with-suppressed-warnings ((interactive-only kotl-mode:goto-line))
(kotl-mode:goto-line line buffer t)))