| 198 | } |
| 199 | |
| 200 | void FCommandBuffer::CursorWordRight() |
| 201 | { |
| 202 | if (CursorPos < Text.length()) |
| 203 | { |
| 204 | do MoveCursorRight(); |
| 205 | while (CursorPos < Text.length() && Text[CursorPos] != ' '); |
| 206 | MakeStartPosGood(); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | void FCommandBuffer::DeleteLeft() |
| 211 | { |