comparison src/ops.c @ 2311:ccda151dde4e vim73

Support completion for ":find". (Nazri Ramliy) Cleanup white space.
author Bram Moolenaar <bram@vim.org>
date Wed, 14 Jul 2010 16:52:17 +0200
parents 3e4574a4b627
children 348f64c129df
comparison
equal deleted inserted replaced
2310:3e4574a4b627 2311:ccda151dde4e
4290 curwin->w_cursor.lnum = t; 4290 curwin->w_cursor.lnum = t;
4291 4291
4292 /* 4292 /*
4293 * Set the cursor column: 4293 * Set the cursor column:
4294 * Vi compatible: use the column of the first join 4294 * Vi compatible: use the column of the first join
4295 * vim: use the column of the last join 4295 * vim: use the column of the last join
4296 */ 4296 */
4297 curwin->w_cursor.col = 4297 curwin->w_cursor.col =
4298 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col); 4298 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
4299 check_cursor_col(); 4299 check_cursor_col();
4300 4300