Lines Matching refs:modechars
999 mode_str2flags(char_u *modechars) in mode_str2flags() argument
1003 if (vim_strchr(modechars, 'n') != NULL) in mode_str2flags()
1005 if (vim_strchr(modechars, 'v') != NULL) in mode_str2flags()
1007 if (vim_strchr(modechars, 'x') != NULL) in mode_str2flags()
1009 if (vim_strchr(modechars, 's') != NULL) in mode_str2flags()
1011 if (vim_strchr(modechars, 'o') != NULL) in mode_str2flags()
1013 if (vim_strchr(modechars, 'i') != NULL) in mode_str2flags()
1015 if (vim_strchr(modechars, 'l') != NULL) in mode_str2flags()
1017 if (vim_strchr(modechars, 'c') != NULL) in mode_str2flags()
1029 map_to_exists(char_u *str, char_u *modechars, int abbr) in map_to_exists() argument
1037 retval = map_to_exists_mode(rhs, mode_str2flags(modechars), abbr); in map_to_exists()