parent
981b83003f
commit
044a90ed55
|
@ -57,9 +57,9 @@ function! s:wordcount()
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:get_decimal_group()
|
function! s:get_decimal_group()
|
||||||
if match(v:lang, '\v\cC|en') > -1
|
if match(get(v:, 'lang', ''), '\v\cC|en') > -1
|
||||||
return ','
|
return ','
|
||||||
elseif match(v:lang, '\v\cde|dk|fr|pt') > -1
|
elseif match(get(v:, 'lang', ''), '\v\cde|dk|fr|pt') > -1
|
||||||
return '.'
|
return '.'
|
||||||
endif
|
endif
|
||||||
return ''
|
return ''
|
||||||
|
|
Loading…
Reference in New Issue