Re: vim addressing and command (syntax?)

2011-04-10 Thread Tim Chase
On 04/10/2011 05:27 PM, Rostyslaw Lewyckyj wrote: I am getting confused trying to understand vim line number addressing rules, and predicting accurately how commands will be parsed. Why is .+1 different from . + 1 and .-1 different from . - 1 For illustration compare (in some test file): :1

vim addressing and command (syntax?)

2011-04-10 Thread Rostyslaw Lewyckyj
I am getting confused trying to understand vim line number addressing rules, and predicting accurately how commands will be parsed. Why is .+1 different from . + 1 and .-1 different from . - 1 For illustration compare (in some test file): :175 | echo line(".") | .+1 | echo line(".")and