Lines Matching refs:vs
138 save_viewstate(viewstate_T *vs) in save_viewstate() argument
140 vs->vs_curswant = curwin->w_curswant; in save_viewstate()
141 vs->vs_leftcol = curwin->w_leftcol; in save_viewstate()
142 vs->vs_topline = curwin->w_topline; in save_viewstate()
144 vs->vs_topfill = curwin->w_topfill; in save_viewstate()
146 vs->vs_botline = curwin->w_botline; in save_viewstate()
147 vs->vs_empty_rows = curwin->w_empty_rows; in save_viewstate()
151 restore_viewstate(viewstate_T *vs) in restore_viewstate() argument
153 curwin->w_curswant = vs->vs_curswant; in restore_viewstate()
154 curwin->w_leftcol = vs->vs_leftcol; in restore_viewstate()
155 curwin->w_topline = vs->vs_topline; in restore_viewstate()
157 curwin->w_topfill = vs->vs_topfill; in restore_viewstate()
159 curwin->w_botline = vs->vs_botline; in restore_viewstate()
160 curwin->w_empty_rows = vs->vs_empty_rows; in restore_viewstate()