Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setOnline (0.11 sec)

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

    		}
    		if t.historyIndex == -1 {
    			t.historyPending = string(t.line)
    		}
    		t.historyIndex++
    		runes := []rune(entry)
    		t.setLine(runes, len(runes))
    	case keyDown:
    		switch t.historyIndex {
    		case -1:
    			return
    		case 0:
    			runes := []rune(t.historyPending)
    			t.setLine(runes, len(runes))
    			t.historyIndex--
    		default:
    			entry, ok := t.history.NthPreviousEntry(t.historyIndex - 1)
    			if ok {
    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