From ea984e206fa1a6e9c22753249bec26166fdbdb23 Mon Sep 17 00:00:00 2001 From: Ingo Karkat Date: Tue, 23 Sep 2014 00:00:00 +0200 Subject: [PATCH] --- autoload/ingo/range/lines.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/autoload/ingo/range/lines.vim b/autoload/ingo/range/lines.vim index cca58d9..8b26667 100644 --- a/autoload/ingo/range/lines.vim +++ b/autoload/ingo/range/lines.vim @@ -32,11 +32,13 @@ function! ingo#range#lines#Get( startLnum, endLnum, range ) "****************************************************************************** "* PURPOSE: " Determine the line numbers and start and end lines of a:range that fall -" inside a:startLnum and a:endLnum. +" inside a:startLnum and a:endLnum. Closed folds do not affect the recorded +" lines; only the actually matched lines are considered. "* ASSUMPTIONS / PRECONDITIONS: " None. "* EFFECTS / POSTCONDITIONS: -" None. +" Changes the cursor position in the buffer (to the beginning of the last line +" within the range). "* INPUTS: " a:startLnum First line number to be considered. " a:endLnum Last line number to be considered.