Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addKeyToLine (0.18 sec)

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

    				return
    			}
    		}
    		if !isPrintable(key) {
    			return
    		}
    		if len(t.line) == maxLineLength {
    			return
    		}
    		t.addKeyToLine(key)
    	}
    	return
    }
    
    // addKeyToLine inserts the given key at the current position in the current
    // line.
    func (t *Terminal) addKeyToLine(key rune) {
    	if len(t.line) == cap(t.line) {
    		newLine := make([]rune, len(t.line), 2*(1+len(t.line)))
    		copy(newLine, t.line)
    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