mirror of
https://github.com/itchyny/lightline.vim.git
synced 2025-11-16 15:33:49 -05:00
trim trailing spaces
This commit is contained in:
@@ -141,7 +141,7 @@ when saving it you need to add the nested flag to your `autocmd` like so
|
|||||||
```vim
|
```vim
|
||||||
augroup reload_vimrc
|
augroup reload_vimrc
|
||||||
autocmd!
|
autocmd!
|
||||||
autocmd bufwritepost $MYVIMRC nested source $MYVIMRC
|
autocmd bufwritepost $MYVIMRC nested source $MYVIMRC
|
||||||
augroup END
|
augroup END
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -462,7 +462,7 @@ endfunction
|
|||||||
```
|
```
|
||||||

|

|
||||||
|
|
||||||
Fine and readable!
|
Fine and readable!
|
||||||
|
|
||||||
|
|
||||||
Finally, you come up with concatenating the three components: the read-only mark, the filename and the modified mark.
|
Finally, you come up with concatenating the three components: the read-only mark, the filename and the modified mark.
|
||||||
@@ -589,8 +589,8 @@ endfunction
|
|||||||
|
|
||||||
function! LightLineFilename()
|
function! LightLineFilename()
|
||||||
return ('' != LightLineReadonly() ? LightLineReadonly() . ' ' : '') .
|
return ('' != LightLineReadonly() ? LightLineReadonly() . ' ' : '') .
|
||||||
\ (&ft == 'vimfiler' ? vimfiler#get_status_string() :
|
\ (&ft == 'vimfiler' ? vimfiler#get_status_string() :
|
||||||
\ &ft == 'unite' ? unite#get_status_string() :
|
\ &ft == 'unite' ? unite#get_status_string() :
|
||||||
\ &ft == 'vimshell' ? vimshell#get_status_string() :
|
\ &ft == 'vimshell' ? vimshell#get_status_string() :
|
||||||
\ '' != expand('%:t') ? expand('%:t') : '[No Name]') .
|
\ '' != expand('%:t') ? expand('%:t') : '[No Name]') .
|
||||||
\ ('' != LightLineModified() ? ' ' . LightLineModified() : '')
|
\ ('' != LightLineModified() ? ' ' . LightLineModified() : '')
|
||||||
|
|||||||
Reference in New Issue
Block a user