mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-23 02:52:15 +08:00
Merge pull request #2081 from kazukazuinaina/fix/scope
[fix] count variable's scope
This commit is contained in:
commit
71a7e23f32
|
@ -162,8 +162,8 @@ function! s:get_number(index)
|
|||
endif
|
||||
let bidx_mode = get(g:, 'airline#extensions#tabline#buffer_idx_mode', 0)
|
||||
if bidx_mode > 1
|
||||
let count = bidx_mode == 2 ? a:index+11 : a:index+1
|
||||
return join(map(split(printf('%02d', count), '\zs'),
|
||||
let l:count = bidx_mode == 2 ? a:index+11 : a:index+1
|
||||
return join(map(split(printf('%02d', l:count), '\zs'),
|
||||
\ 'get(s:number_map, v:val, "")'), '')
|
||||
else
|
||||
return get(s:number_map, a:index+1, '')
|
||||
|
|
Loading…
Reference in New Issue
Block a user