MCPcopy Create free account
hub / github.com/ZDoom/Raze / CursorWordRight

Method CursorWordRight

source/common/console/c_commandbuffer.cpp:200–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

C_HandleKeyFunction · 0.80

Calls 1

lengthMethod · 0.80

Tested by

no test coverage detected