(cm, oldCur, newCur)
| 3418 | } |
| 3419 | |
| 3420 | function recordJumpPosition(cm, oldCur, newCur) { |
| 3421 | if (!cursorEqual(oldCur, newCur)) { |
| 3422 | vimGlobalState.jumpList.add(cm, oldCur, newCur); |
| 3423 | } |
| 3424 | } |
| 3425 | |
| 3426 | function recordLastCharacterSearch(increment, args) { |
| 3427 | vimGlobalState.lastCharacterSearch.increment = increment; |
no test coverage detected