MCPcopy Create free account
hub / github.com/atomicgo/cursor / Down

Method Down

cursor_windows.go:17–19  ·  view source on GitHub ↗

Down moves the cursor n lines down relative to the current position.

(n int)

Source from the content-addressed store, hash-verified

15
16// Down moves the cursor n lines down relative to the current position.
17func (c *Cursor) Down(n int) {
18 c.move(0, n)
19}
20
21// Right moves the cursor n characters to the right relative to the current position.
22func (c *Cursor) Right(n int) {

Callers

nothing calls this directly

Calls 1

moveMethod · 0.95

Tested by

no test coverage detected