tweak width truncation values.

This commit is contained in:
Bailey Ling 2013-08-27 07:55:28 -04:00
parent 895743c13d
commit 5c1c985502
2 changed files with 8 additions and 4 deletions

View File

@ -2,8 +2,10 @@
" vim: et ts=2 sts=2 sw=2
let s:section_truncate_width = get(g:, 'airline#extensions#default#section_truncate_width', {
\ 'b': 90,
\ 'y': 90,
\ 'b': 88,
\ 'x': 60,
\ 'y': 88,
\ 'z': 45,
\ })
function! s:get_section(winnr, key, ...)

View File

@ -192,8 +192,10 @@ configuration values that you can use.
* control which sections get truncated and at what width. >
let g:airline#extensions#default#section_truncate_width = {
\ 'b': 90,
\ 'y': 90,
\ 'b': 88,
\ 'x': 60,
\ 'y': 88,
\ 'z': 45,
\ })
<
*airline-branch*