github.com/kevinburke/ssh_config.token.val (field)

12 uses

	github.com/kevinburke/ssh_config (current package)
		lexer.go#L191: 		val:      value,
		parser.go#L104: 		comment = tok.val
		parser.go#L106: 	if strings.ToLower(key.val) == "match" {
		parser.go#L111: 	if strings.ToLower(key.val) == "host" {
		parser.go#L112: 		strPatterns := strings.Split(val.val, " ")
		parser.go#L134: 	if strings.ToLower(key.val) == "include" {
		parser.go#L135: 		inc, err := NewInclude(strings.Split(val.val, " "), hasEquals, key.Position, comment, p.system, p.depth+1)
		parser.go#L148: 		Key:          key.val,
		parser.go#L149: 		Value:        val.val,
		parser.go#L163: 		Comment: comment.val,
		token.go#L8: 	val string
		token.go#L16: 	return fmt.Sprintf("%q", t.val)