comparison runtime/doc/eval.txt @ 493:06364aa0d597

updated for version 7.0135
author vimboss
date Tue, 23 Aug 2005 21:02:42 +0000
parents f012c4ed8c38
children 52e76e2b5b65
comparison
equal deleted inserted replaced
492:81c06952fb1d 493:06364aa0d597
1 *eval.txt* For Vim version 7.0aa. Last change: 2005 Aug 11 1 *eval.txt* For Vim version 7.0aa. Last change: 2005 Aug 23
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
2011 cscope_connection(4, "out", "local") 0 2011 cscope_connection(4, "out", "local") 0
2012 cscope_connection(4, "cscope.out", "/usr/local") 1 2012 cscope_connection(4, "cscope.out", "/usr/local") 1
2013 < 2013 <
2014 cursor({lnum}, {col}) *cursor()* 2014 cursor({lnum}, {col}) *cursor()*
2015 Positions the cursor at the column {col} in the line {lnum}. 2015 Positions the cursor at the column {col} in the line {lnum}.
2016 The first column is one.
2016 Does not change the jumplist. 2017 Does not change the jumplist.
2017 If {lnum} is greater than the number of lines in the buffer, 2018 If {lnum} is greater than the number of lines in the buffer,
2018 the cursor will be positioned at the last line in the buffer. 2019 the cursor will be positioned at the last line in the buffer.
2019 If {lnum} is zero, the cursor will stay in the current line. 2020 If {lnum} is zero, the cursor will stay in the current line.
2020 If {col} is greater than the number of characters in the line, 2021 If {col} is greater than the number of bytes in the line,
2021 the cursor will be positioned at the last character in the 2022 the cursor will be positioned at the last character in the
2022 line. 2023 line.
2023 If {col} is zero, the cursor will stay in the current column. 2024 If {col} is zero, the cursor will stay in the current column.
2024 2025
2025 2026