(macroModeState)
| 14180 | } |
| 14181 | |
| 14182 | function logInsertModeChange(macroModeState) { |
| 14183 | if (macroModeState.isPlaying) { return; } |
| 14184 | var registerName = macroModeState.latestRegister; |
| 14185 | var register = vimGlobalState.registerController.getRegister(registerName); |
| 14186 | if (register && register.pushInsertModeChanges) { |
| 14187 | register.pushInsertModeChanges(macroModeState.lastInsertModeChanges); |
| 14188 | } |
| 14189 | } |
| 14190 | |
| 14191 | function logSearchQuery(macroModeState, query) { |
| 14192 | if (macroModeState.isPlaying) { return; } |