Skip to content

Commit

Permalink
Fix width limit
Browse files Browse the repository at this point in the history
  • Loading branch information
kmnk committed Sep 3, 2015
1 parent def1d6b commit b74e839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vim/profiles/statusline.vim
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ let g:lightline = {
function! LightLineFileName()
return &ft == 'vimfiler' ? 'VimFiler'
\ : &ft == 'vimshell' ? 'VimShell'
\ : '' != expand('%:t') ? ( winwidth(0) > 60 ? expand('%') : expand('%:t') )
\ : '' != expand('%:t') ? ( winwidth(0) > 80 ? expand('%') : expand('%:t') )
\ : '[No Name]'
endfunction

Expand Down

0 comments on commit b74e839

Please sign in to comment.