comparison src/search.c @ 25437:d4a710f06f02 v8.2.3255

patch 8.2.3255: ci" finds following string but ci< and others don't Commit: https://github.com/vim/vim/commit/b9115da4bec5e6cfff69da85cc47c42dd67e42e4 Author: Connor Lane Smith <cls@lubutu.com> Date: Sat Jul 31 13:31:42 2021 +0200 patch 8.2.3255: ci" finds following string but ci< and others don't Problem: ci" finds following string but ci< and others don't. Solution: When not inside an object find the start. (Connor Lane Smit, closes #8670)
author Bram Moolenaar <Bram@vim.org>
date Sat, 31 Jul 2021 13:45:03 +0200
parents e8e2c4d33b9b
children b95f9cc3d1b9
comparison
equal deleted inserted replaced
25436:1c4eb97d71a1 25437:d4a710f06f02
2143 initc = NUL; 2143 initc = NUL;
2144 } 2144 }
2145 else if (initc != '#' && initc != NUL) 2145 else if (initc != '#' && initc != NUL)
2146 { 2146 {
2147 find_mps_values(&initc, &findc, &backwards, TRUE); 2147 find_mps_values(&initc, &findc, &backwards, TRUE);
2148 if (dir)
2149 backwards = (dir == FORWARD) ? FALSE : TRUE;
2148 if (findc == NUL) 2150 if (findc == NUL)
2149 return NULL; 2151 return NULL;
2150 } 2152 }
2151 else 2153 else
2152 { 2154 {