(line, start, dir)
| 6835 | } |
| 6836 | |
| 6837 | function moveLogically(line, start, dir) { |
| 6838 | var ch = moveCharLogically(line, start.ch, dir); |
| 6839 | return ch == null ? null : new Pos(start.line, ch, dir < 0 ? "after" : "before") |
| 6840 | } |
| 6841 | |
| 6842 | function endOfLine(visually, cm, lineObj, lineNo, dir) { |
| 6843 | if (visually) { |
no test coverage detected