forked from mirror/readline
fix wordbreak to add number
This commit is contained in:
parent
4e554e2dd0
commit
bb5b4af6e7
13
utils.go
13
utils.go
|
@ -137,13 +137,14 @@ func LineCount(screenWidth, w int) int {
|
|||
}
|
||||
|
||||
func IsWordBreak(i rune) bool {
|
||||
if i >= 'a' && i <= 'z' {
|
||||
return false
|
||||
switch {
|
||||
case i >= 'a' && i <= 'z':
|
||||
case i >= 'A' && i <= 'Z':
|
||||
case i >= '0' && i <= '9':
|
||||
default:
|
||||
return true
|
||||
}
|
||||
if i >= 'A' && i <= 'Z' {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
return false
|
||||
}
|
||||
|
||||
func GetInt(s []string, def int) int {
|
||||
|
|
Loading…
Reference in New Issue