mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.3.426
Problem: With '$' in 'cpoptions' the $ is not displayed in the first column. Solution: Use -1 instead of 0 as a special value. (Hideki Eiraku and Hirohito Higashi)
This commit is contained in:
@@ -362,7 +362,7 @@ update_topline()
|
||||
#endif
|
||||
)
|
||||
{
|
||||
dollar_vcol = 0;
|
||||
dollar_vcol = -1;
|
||||
if (curwin->w_skipcol != 0)
|
||||
{
|
||||
curwin->w_skipcol = 0;
|
||||
@@ -966,7 +966,7 @@ curs_columns(may_scroll)
|
||||
|
||||
/* remove '$' from change command when cursor moves onto it */
|
||||
if (startcol > dollar_vcol)
|
||||
dollar_vcol = 0;
|
||||
dollar_vcol = -1;
|
||||
|
||||
extra = curwin_col_off();
|
||||
curwin->w_wcol = curwin->w_virtcol + extra;
|
||||
|
Reference in New Issue
Block a user