(line, start, dir)
| 9330 | } |
| 9331 | |
| 9332 | function moveLogically(line, start, dir) { |
| 9333 | var ch = moveCharLogically(line, start.ch, dir) |
| 9334 | return ch == null ? null : new Pos(start.line, ch, dir < 0 ? "after" : "before") |
| 9335 | } |
| 9336 | |
| 9337 | function endOfLine(visually, cm, lineObj, lineNo, dir) { |
| 9338 | if (visually) { |
no test coverage detected