(options)
| 496 | |
| 497 | class VisualLineMode extends VisualMode { |
| 498 | init(options) { |
| 499 | if (options == null) { |
| 500 | options = {}; |
| 501 | } |
| 502 | super.init(Object.assign(options, { name: "visual/line", indicator: "Visual mode (line)" })); |
| 503 | return this.extendSelection(); |
| 504 | } |
| 505 | |
| 506 | commandHandler({ command: { command }, count }) { |
| 507 | if (count == null) count = 1; |
no test coverage detected