Skip to content
Snippets Groups Projects
Select Git revision
  • 65a8552f8756202dc940ea8c2315256097b09cc7
  • master default protected
  • v1.16.5
  • v1.16.4
  • v1.16.3
  • v1.16.2
  • v1.16.1
  • v1.16.0
  • v1.15.0
  • v1.14.0
  • v1.13.2
  • v1.13.1
  • v1.13.0
  • v1.12.0
  • v1.11.0
  • v1.10.2
  • v1.10.1
  • v1.10.0
  • v1.9.0
  • v1.8.3
  • v1.8.2
  • v1.8.1
22 results

variables.css

Blame
  • caps.go 745 B
    package terminfo
    
    // BoolCapName returns the bool capability name.
    func BoolCapName(i int) string {
    	return boolCapNames[2*i]
    }
    
    // BoolCapNameShort returns the short bool capability name.
    func BoolCapNameShort(i int) string {
    	return boolCapNames[2*i+1]
    }
    
    // NumCapName returns the num capability name.
    func NumCapName(i int) string {
    	return numCapNames[2*i]
    }
    
    // NumCapNameShort returns the short num capability name.
    func NumCapNameShort(i int) string {
    	return numCapNames[2*i+1]
    }
    
    // StringCapName returns the string capability name.
    func StringCapName(i int) string {
    	return stringCapNames[2*i]
    }
    
    // StringCapNameShort returns the short string capability name.
    func StringCapNameShort(i int) string {
    	return stringCapNames[2*i+1]
    }