Case conversion. @param cs case type
(final Case cs)
| 301 | * @param cs case type |
| 302 | */ |
| 303 | public final void toCase(final Case cs) { |
| 304 | final int caret = editor.pos(); |
| 305 | if(editor.toCase(cs)) hist.store(editor.text(), caret, editor.pos()); |
| 306 | computeHeight.invokeLater(true); |
| 307 | } |
| 308 | |
| 309 | /** |
| 310 | * Jumps to a matching bracket. |
no test coverage detected