mirror of
https://github.com/vim-airline/vim-airline-themes.git
synced 2024-12-12 21:33:41 +08:00
remove comment about file length, as it is already proper.
This commit is contained in:
parent
77a0d933d7
commit
e01b2a99c0
|
@ -112,16 +112,15 @@ function! s:get_visible_buffers()
|
||||||
let max_width = 0
|
let max_width = 0
|
||||||
|
|
||||||
for nr in buffers
|
for nr in buffers
|
||||||
" TODO: get this information from the builder?
|
|
||||||
let width = len(airline#extensions#tabline#get_buffer_name(nr)) + 4
|
let width = len(airline#extensions#tabline#get_buffer_name(nr)) + 4
|
||||||
let total_width += width
|
let total_width += width
|
||||||
let max_width = max([max_width, width])
|
let max_width = max([max_width, width])
|
||||||
endfor
|
endfor
|
||||||
|
|
||||||
" only show current and surrounding buffers if there are too many buffers
|
" only show current and surrounding buffers if there are too many buffers
|
||||||
if total_width > winwidth(0) && index(buffers, cur) > -1
|
let position = index(buffers, cur)
|
||||||
|
if total_width > winwidth(0) && position > -1
|
||||||
let buf_count = len(buffers)
|
let buf_count = len(buffers)
|
||||||
let position = index(buffers, cur)
|
|
||||||
|
|
||||||
" determine how many buffers to show based on the longest buffer width,
|
" determine how many buffers to show based on the longest buffer width,
|
||||||
" use one on the right side and put the rest on the left
|
" use one on the right side and put the rest on the left
|
||||||
|
|
Loading…
Reference in New Issue
Block a user