Improve type(): avoid the magic numbers

This commit is contained in:
haya14busa 2014-02-21 22:37:54 +09:00
parent fc502975f7
commit ded514fcd3

View File

@ -779,7 +779,7 @@ function! s:CreateCoordKeyDict(groups, ...)
let key = group_key . key
"let key = ( ! empty(group_key) ? group_key : key)
if type(item) == 3 " List
if type(item) == type([]) " List
" Destination coords
" The key needs to be zero-padded in order to
@ -1008,7 +1008,7 @@ function! s:PromptUser(groups) "{{{
let target = a:groups[char]
if type(target) == 3
if type(target) == type([])
" Return target coordinates
return target
else
@ -1025,7 +1025,7 @@ function! s:DotPromptUser(groups) "{{{
let target = a:groups[char]
if type(target) == 3
if type(target) == type([])
" Return target coordinates
return target
else