(macroModeState)
| 5448 | } |
| 5449 | |
| 5450 | function logInsertModeChange(macroModeState) { |
| 5451 | if (macroModeState.isPlaying) { return; } |
| 5452 | var registerName = macroModeState.latestRegister; |
| 5453 | var register = vimGlobalState.registerController.getRegister(registerName); |
| 5454 | if (register && register.pushInsertModeChanges) { |
| 5455 | register.pushInsertModeChanges(macroModeState.lastInsertModeChanges); |
| 5456 | } |
| 5457 | } |
| 5458 | |
| 5459 | function logSearchQuery(macroModeState, query) { |
| 5460 | if (macroModeState.isPlaying) { return; } |