2013-07-01 23:49:40 +00:00
|
|
|
|
*airline.txt* Lean and mean statusline that's light as air
|
2013-07-01 11:33:26 +00:00
|
|
|
|
|
|
|
|
|
==============================================================================
|
2013-07-15 14:45:47 +00:00
|
|
|
|
INTRODUCTION *airline*
|
2013-07-01 11:33:26 +00:00
|
|
|
|
|
2013-08-02 12:11:53 +00:00
|
|
|
|
vim-airline is a fast and lightweight alternative to powerline, written
|
|
|
|
|
in 100% vimscript with no outside dependencies.
|
2013-07-01 11:33:26 +00:00
|
|
|
|
|
2013-08-02 12:11:53 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
FEATURES *airline-features*
|
|
|
|
|
|
|
|
|
|
* tiny core written with extensibility in mind.
|
|
|
|
|
* integrates with many popular plugins.
|
2013-07-31 20:07:14 +00:00
|
|
|
|
* looks good with regular fonts, and provides configuration points so you
|
2013-07-08 03:12:05 +00:00
|
|
|
|
can use unicode or powerline symbols.
|
2013-08-02 12:11:53 +00:00
|
|
|
|
* optimized for speed; it loads in 1ms.
|
2013-07-31 20:07:14 +00:00
|
|
|
|
* fully customizable; if you know a little |statusline| syntax you can
|
2013-07-08 03:12:05 +00:00
|
|
|
|
tweak it to your needs.
|
2013-07-31 20:07:14 +00:00
|
|
|
|
* trivial to write colorschemes; for a minimal theme you need to edit
|
|
|
|
|
9 lines of colors. (please send pull requests)
|
2013-07-01 11:33:26 +00:00
|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
NAME *airline-name*
|
|
|
|
|
|
2013-07-22 21:23:41 +00:00
|
|
|
|
Where did the name come from?
|
2013-07-01 11:33:26 +00:00
|
|
|
|
|
2013-07-10 13:48:13 +00:00
|
|
|
|
I wrote this on an airplane, and since it's light as air it turned out to be a
|
2013-07-01 11:33:26 +00:00
|
|
|
|
good name :-)
|
|
|
|
|
|
|
|
|
|
==============================================================================
|
2013-07-01 23:49:40 +00:00
|
|
|
|
CONFIGURATION *airline-configuration*
|
2013-07-01 11:33:26 +00:00
|
|
|
|
|
2013-07-10 13:48:13 +00:00
|
|
|
|
There are a couple configuration values available (shown with their default
|
2013-07-01 11:33:26 +00:00
|
|
|
|
values):
|
|
|
|
|
|
2013-07-02 03:48:50 +00:00
|
|
|
|
* the separator used on the left side
|
2013-07-01 11:33:26 +00:00
|
|
|
|
>
|
|
|
|
|
let g:airline_left_sep='>'
|
|
|
|
|
<
|
|
|
|
|
|
2013-07-02 03:48:50 +00:00
|
|
|
|
* the separator used on the right side
|
2013-07-01 11:33:26 +00:00
|
|
|
|
>
|
2013-07-02 09:49:06 +00:00
|
|
|
|
let g:airline_right_sep='<'
|
2013-07-01 11:33:26 +00:00
|
|
|
|
<
|
|
|
|
|
|
2013-07-18 05:56:29 +00:00
|
|
|
|
* enable/disable fugitive/lawrencium integration
|
2013-07-01 11:33:26 +00:00
|
|
|
|
>
|
2013-07-27 22:15:00 +00:00
|
|
|
|
let g:airline_enable_branch=1
|
2013-07-01 11:33:26 +00:00
|
|
|
|
<
|
|
|
|
|
|
|
|
|
|
* enable/disable syntastic integration
|
|
|
|
|
>
|
|
|
|
|
let g:airline_enable_syntastic=1
|
|
|
|
|
<
|
|
|
|
|
|
2013-07-31 20:07:14 +00:00
|
|
|
|
* enable/disable tagbar integration
|
|
|
|
|
>
|
|
|
|
|
let g:airline_enable_tagbar=1
|
|
|
|
|
<
|
|
|
|
|
|
2013-07-22 21:23:41 +00:00
|
|
|
|
* enable modified detection
|
|
|
|
|
>
|
|
|
|
|
let g:airline_detect_modified=1
|
|
|
|
|
<
|
|
|
|
|
|
|
|
|
|
* enable paste detection
|
|
|
|
|
>
|
|
|
|
|
let g:airline_detect_paste=1
|
|
|
|
|
<
|
2013-07-24 11:35:31 +00:00
|
|
|
|
* enable iminsert detection
|
|
|
|
|
>
|
|
|
|
|
let g:airline_detect_iminsert=1
|
2013-07-22 21:23:41 +00:00
|
|
|
|
|
2013-07-15 20:19:26 +00:00
|
|
|
|
* change the default theme
|
2013-07-01 11:33:26 +00:00
|
|
|
|
>
|
2013-07-06 00:15:52 +00:00
|
|
|
|
let g:airline_theme='dark'
|
2013-07-01 11:33:26 +00:00
|
|
|
|
<
|
|
|
|
|
|
|
|
|
|
* enable/disable usage of patched powerline font symbols
|
|
|
|
|
>
|
|
|
|
|
let g:airline_powerline_fonts=0
|
|
|
|
|
<
|
|
|
|
|
|
2013-07-04 15:39:49 +00:00
|
|
|
|
* define the set of text to display for each mode.
|
|
|
|
|
>
|
|
|
|
|
let g:airline_mode_map = {} " see source for current list
|
|
|
|
|
<
|
|
|
|
|
|
2013-07-02 11:04:36 +00:00
|
|
|
|
* define the set of filename match queries which excludes a window from having
|
|
|
|
|
its statusline modified
|
2013-07-02 11:00:31 +00:00
|
|
|
|
>
|
2013-07-02 11:04:36 +00:00
|
|
|
|
let g:airline_exclude_filenames = [] " see source for current list
|
2013-07-02 11:00:31 +00:00
|
|
|
|
<
|
|
|
|
|
|
|
|
|
|
* define the set of filetypes which are excluded from having its window
|
|
|
|
|
statusline modified
|
|
|
|
|
>
|
|
|
|
|
let g:airline_exclude_filetypes = [] " see source for current list
|
|
|
|
|
<
|
2013-07-08 00:38:19 +00:00
|
|
|
|
|
2013-07-14 19:44:16 +00:00
|
|
|
|
* defines whether the preview window should be excluded from have its window
|
|
|
|
|
statusline modified (may help with plugins which use the preview window
|
|
|
|
|
heavily)
|
|
|
|
|
>
|
|
|
|
|
let g:airline_exclude_preview = 0
|
|
|
|
|
<
|
|
|
|
|
|
2013-07-15 20:19:26 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
COMMANDS *airline-commands*
|
|
|
|
|
|
|
|
|
|
:AirlineTheme {theme-name} *:AirlineTheme*
|
|
|
|
|
Displays or changes the current theme.
|
|
|
|
|
|
2013-07-01 23:49:40 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
CUSTOMIZATION *airline-customization*
|
|
|
|
|
|
2013-07-10 13:48:13 +00:00
|
|
|
|
The following are some unicode symbols for customizing the left/right
|
|
|
|
|
separators, as well as the powerline font glyths.
|
2013-07-01 23:49:40 +00:00
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
" unicode symbols
|
|
|
|
|
let g:airline_left_sep = '»'
|
|
|
|
|
let g:airline_left_sep = '▶'
|
|
|
|
|
let g:airline_right_sep = '«'
|
|
|
|
|
let g:airline_right_sep = '◀'
|
|
|
|
|
let g:airline_linecolumn_prefix = '␊ '
|
|
|
|
|
let g:airline_linecolumn_prefix = ' '
|
2013-07-02 11:00:31 +00:00
|
|
|
|
let g:airline_linecolumn_prefix = '¶ '
|
2013-07-27 22:15:00 +00:00
|
|
|
|
let g:airline_branch_prefix = '⎇ '
|
2013-07-06 18:22:34 +00:00
|
|
|
|
let g:airline_paste_symbol = 'ρ'
|
2013-07-06 18:30:21 +00:00
|
|
|
|
let g:airline_paste_symbol = 'Þ'
|
|
|
|
|
let g:airline_paste_symbol = '∥'
|
2013-07-01 23:49:40 +00:00
|
|
|
|
|
|
|
|
|
" powerline symbols
|
|
|
|
|
let g:airline_left_sep = ''
|
2013-07-08 00:38:19 +00:00
|
|
|
|
let g:airline_left_alt_sep = ''
|
2013-07-18 02:28:21 +00:00
|
|
|
|
let g:airline_right_sep = ''
|
|
|
|
|
let g:airline_right_alt_sep = ''
|
2013-07-27 22:15:00 +00:00
|
|
|
|
let g:airline_branch_prefix = ' '
|
2013-07-01 23:49:40 +00:00
|
|
|
|
let g:airline_readonly_symbol = ''
|
|
|
|
|
let g:airline_linecolumn_prefix = ' '
|
2013-07-17 19:09:18 +00:00
|
|
|
|
|
|
|
|
|
" old vim-powerline symbols
|
|
|
|
|
let g:airline_left_sep = '⮀'
|
|
|
|
|
let g:airline_left_alt_sep = '⮁'
|
|
|
|
|
let g:airline_right_sep = '⮂'
|
|
|
|
|
let g:airline_right_alt_sep = '⮃'
|
2013-07-27 22:15:00 +00:00
|
|
|
|
let g:airline_branch_prefix = '⭠'
|
2013-07-17 19:09:18 +00:00
|
|
|
|
let g:airline_readonly_symbol = '⭤'
|
|
|
|
|
let g:airline_linecolumn_prefix = '⭡'
|
2013-07-01 23:49:40 +00:00
|
|
|
|
<
|
|
|
|
|
|
2013-07-10 13:48:13 +00:00
|
|
|
|
For more intricate customizations, you can replace the predefined sections
|
2013-07-06 17:01:21 +00:00
|
|
|
|
with the usual statusline syntax.
|
2013-07-04 15:39:49 +00:00
|
|
|
|
|
|
|
|
|
>
|
2013-07-08 00:38:19 +00:00
|
|
|
|
" here are the the default values
|
2013-07-15 20:19:26 +00:00
|
|
|
|
let g:airline_section_a (the mode/paste indicator)
|
2013-07-18 05:56:29 +00:00
|
|
|
|
let g:airline_section_b (the fugitive/lawrencium branch indicator)
|
2013-07-08 01:00:14 +00:00
|
|
|
|
let g:airline_section_c (bufferline or filename)
|
2013-08-03 00:50:06 +00:00
|
|
|
|
let g:airline_section_gutter (syntastic, readonly flag)
|
|
|
|
|
let g:airline_section_x (tagbar, filetype)
|
2013-07-08 01:00:14 +00:00
|
|
|
|
let g:airline_section_y (fileencoding, fileformat)
|
|
|
|
|
let g:airline_section_z (percentage, line number, column number)
|
2013-07-08 03:12:05 +00:00
|
|
|
|
|
2013-07-27 22:15:00 +00:00
|
|
|
|
" here is an example of how you could replace the branch indicator with
|
2013-07-08 03:12:05 +00:00
|
|
|
|
" the current working directory, followed by the filename.
|
|
|
|
|
let g:airline_section_b = '%{getcwd()}'
|
|
|
|
|
let g:airline_section_c = '%t'
|
2013-07-04 15:39:49 +00:00
|
|
|
|
<
|
|
|
|
|
|
2013-08-03 15:14:02 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
FUNCREFS *airline-funcrefs*
|
|
|
|
|
|
|
|
|
|
vim-airline internally uses funcrefs to integrate with third party plugins,
|
|
|
|
|
and you can tap into this functionality to extend it for you needs.
|
|
|
|
|
|
|
|
|
|
*g:airline_statusline_funcrefs*
|
|
|
|
|
The g:airline_statusline_funcrefs variable is an array of funcrefs that get
|
|
|
|
|
invoked before the statusline gets overwritten for each window. The following
|
|
|
|
|
is an example of how you can extend vim-airline to support a new plugin.
|
2013-07-10 13:48:13 +00:00
|
|
|
|
>
|
|
|
|
|
function! MyPlugin()
|
|
|
|
|
if &filetype == 'MyPluginFileType'
|
|
|
|
|
let w:airline_section_a = 'MyPlugin'
|
|
|
|
|
let w:airline_section_b = '%f'
|
|
|
|
|
let w:airline_section_c = '%{MyPlugin#function()}'
|
2013-08-03 15:14:02 +00:00
|
|
|
|
let g:airline_variable_referenced_in_statusline = 'foo'
|
2013-07-10 13:48:13 +00:00
|
|
|
|
endif
|
|
|
|
|
endfunction
|
2013-08-03 15:14:02 +00:00
|
|
|
|
call add(g:airline_statusline_funcrefs, function('MyPlugin'))
|
2013-07-10 13:48:13 +00:00
|
|
|
|
<
|
2013-08-03 15:14:02 +00:00
|
|
|
|
*g:airline_exclude_funcrefs*
|
|
|
|
|
The g:airline_exclude_funcrefs variable is an array that's returns 1 or 0 to
|
|
|
|
|
determine whether that particular window should be excluded from having its
|
|
|
|
|
statusline modified. Here is an example:
|
2013-07-25 22:48:15 +00:00
|
|
|
|
>
|
|
|
|
|
function! ExcludeFoo()
|
|
|
|
|
return &filetype == 'FooType'
|
|
|
|
|
endfunction
|
|
|
|
|
call add(g:airline_exclude_funcrefs, function('ExcludeFoo'))
|
|
|
|
|
<
|
|
|
|
|
|
2013-07-24 03:00:23 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
WRITING THEMES *airline-themes*
|
|
|
|
|
|
|
|
|
|
Themes are written "close to the metal" -- you will need to know some basic
|
2013-08-04 01:25:35 +00:00
|
|
|
|
VimL syntax to write a theme, but if you've written in any programming
|
|
|
|
|
language before it will be easy to pick up.
|
|
|
|
|
|
|
|
|
|
The |dark.vim| theme fully documents this procedure and will guide you through
|
|
|
|
|
the process. The |jellybeans.vim| theme is another example of how to write a
|
|
|
|
|
theme, but instead of manually declaring colors, it extracts the values from
|
|
|
|
|
highlight groups.
|
2013-07-24 03:00:23 +00:00
|
|
|
|
|
2013-07-20 13:24:15 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
TROUBLESHOOTING *airline-troubleshooting*
|
|
|
|
|
|
|
|
|
|
Solutions to common problems can be found FAQ section in the Wiki:
|
|
|
|
|
<https://github.com/bling/vim-airline/wiki/FAQ>
|
|
|
|
|
|
2013-07-01 11:33:26 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
CONTRIBUTIONS *airline-contributions*
|
|
|
|
|
|
2013-07-15 14:45:47 +00:00
|
|
|
|
Contributions and pull requests are welcome.
|
2013-07-01 11:33:26 +00:00
|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
LICENSE *airline-license*
|
|
|
|
|
|
2013-08-02 17:56:12 +00:00
|
|
|
|
MIT license. Copyright © 2013 Bailey Ling.
|
2013-07-15 14:45:47 +00:00
|
|
|
|
|
2013-07-01 11:33:26 +00:00
|
|
|
|
|
|
|
|
|
vim:tw=78:ts=8:ft=help:norl:
|