Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NO_COLOR (0.1 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/printers/terminal.go

    		return false
    	}
    
    	// https://en.wikipedia.org/wiki/Computer_terminal#Dumb_terminals
    	if os.Getenv("TERM") == "dumb" {
    		return false
    	}
    
    	// https://no-color.org/
    	if _, nocolor := os.LookupEnv("NO_COLOR"); nocolor {
    		return false
    	}
    
    	// On Windows WT_SESSION is set by the modern terminal component.
    	// Older terminals have poor support for UTF-8, VT escape codes, etc.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top