clarify how to add custom parts to the statusline

This commit is contained in:
Christian Brabandt 2016-01-23 22:09:37 +01:00
parent cce3e41398
commit 9e25f52c6f
1 changed files with 4 additions and 0 deletions

View File

@ -664,6 +664,10 @@ greater than a minimum width. >
Parts can be configured to be visible conditionally. > Parts can be configured to be visible conditionally. >
call airline#parts#define_condition('foo', 'getcwd() =~ "work_dir"') call airline#parts#define_condition('foo', 'getcwd() =~ "work_dir"')
< <
Now add part "foo" to section section airline_section_y: >
let g:airline_section_y = airline#section#create_right(['ffenc','foo'])
<
Note: Part definitions are combinative; e.g. the two examples above modify the Note: Part definitions are combinative; e.g. the two examples above modify the
same `foo` part. same `foo` part.