MCPcopy Create free account
hub / github.com/continuedev/continue / deleteBackward

Method deleteBackward

extensions/cli/src/ui/TextBuffer.ts:66–70  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

64 }
65
66 deleteBackward(): void {
67 if (this._cursor > 0) {
68 this.deleteCharAt(this._cursor - 1);
69 }
70 }
71
72 deleteForward(): void {
73 if (this._cursor < this._text.length) {

Callers 2

handleDeleteKeysMethod · 0.95
TextBuffer.test.tsFile · 0.80

Calls 1

deleteCharAtMethod · 0.95

Tested by

no test coverage detected