Lines Matching refs:item
159 " Locate the start of the item, including "."
720 for item in split(&iskeyword, ',')
721 if item =~ '\d-\d'
724 let [b:start, b:end] = split(item, '-')
732 elseif item =~ '^\d\+$'
734 if item < 127 || l:omni_syntax_use_single_byte == 0
735 if nr2char(item) =~ '\p'
736 let accepted_chars = accepted_chars . nr2char(item)
740 if char2nr(item) < 127 || l:omni_syntax_use_single_byte == 0
741 if item =~ '\p'
742 let accepted_chars = accepted_chars . item
789 for item in split(a:spec, ',')
790 if len(item) > 1
791 if item == '@-@'
792 call add(result, char2nr(item))
794 call extend(result, call('range', split(item, '-')))
797 if item == '@' " assume this is [A-Za-z]
802 call add(result, char2nr(item))