mirror of
https://github.com/zyedidia/micro.git
synced 2026-03-23 09:17:08 +09:00
@@ -416,7 +416,7 @@ func Clamp(val, min, max int) int {
|
||||
}
|
||||
|
||||
func IsNonAlphaNumeric(c rune) bool {
|
||||
return !unicode.IsLetter(c) && !unicode.IsNumber(c)
|
||||
return !unicode.IsLetter(c) && !unicode.IsNumber(c) && c != '_'
|
||||
}
|
||||
|
||||
func ParseSpecial(s string) string {
|
||||
|
||||
Reference in New Issue
Block a user