(cm)
| 157 | cm.setCursor(start); |
| 158 | } |
| 159 | function goLineStartText(cm) { |
| 160 | // Go to the start of the line where the text begins, or the end for whitespace-only lines |
| 161 | var cur = cm.getCursor(), firstNonWS = cm.getLine(cur.line).search(/\S/); |
| 162 | cm.setCursor(cur.line, firstNonWS == -1 ? line.length : firstNonWS, true); |
| 163 | } |
| 164 | |
| 165 | function charIdxInLine(cm, cHar, motion_options) { |
| 166 | // Search for cHar in line. |