Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for countToLeftWord (0.09 sec)

  1. src/cmd/vendor/golang.org/x/term/terminal.go

    		for i := 0; i < n; i++ {
    			t.queue(space)
    		}
    		t.advanceCursor(n)
    		t.moveCursorToPos(t.pos)
    	}
    }
    
    // countToLeftWord returns then number of characters from the cursor to the
    // start of the previous word.
    func (t *Terminal) countToLeftWord() int {
    	if t.pos == 0 {
    		return 0
    	}
    
    	pos := t.pos - 1
    	for pos > 0 {
    		if t.line[pos] != ' ' {
    			break
    		}
    		pos--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
Back to top