Powerline is a statusline plugin for vim, and provides statuslines and prompts for several other applications, including zsh, bash, tmux, IPython, Awesome and Qtile.
Go to file
Kim Silkebækken 90f8f94468 Update vim statusline example
A major issue is that we currently can't pass any windows' mode on to
the segment rendering method, so non-current windows don't get
highlighted correctly, and segments don't get removed if they have 'nc'
in their exclude_modes setting, and statuslines in non-current windows
don't get resized until the window is focused again.
2012-12-10 20:00:26 +01:00
examples Update vim statusline example 2012-12-10 20:00:26 +01:00
powerline Handle segment exclude/include modes 2012-12-10 19:46:54 +01:00
README.rst Add short presentation to README 2012-11-26 09:17:28 +01:00

README.rst

=========
Powerline
=========

:Author: Kim Silkebækken (kim.silkebaekken+vim@gmail.com)
:Source: https://github.com/Lokaltog/powerline

**This is alpha software, expect things to change or break at any point.**

This is the next version of Powerline, implemented in Python. It aims to 
resolve some of the "unresolvable" problems of the vimscript implementation, 
as well as providing a common code base for all projects that use Powerline 
in some way (e.g. shell prompts and tmux themes).

Some of the new features for vim are:

* **Dynamic statusline evaluation in Python.** Python performs really well 
  and allows Powerline to re-render the statusline in Python instead of 
  relying on vim's statusline flags. This means no more caching, and much 
  more flexibility.
* **Automatic removal of less important segments in small windows.** Not all 
  information is equally important to have in the statusline, and segments 
  with e.g. encoding and file format information are automatically removed 
  in smaller windows.
* **The possibility of adding more segments.** Because of vim's hardcoded 
  limitation of 80 statusline options, the vimscript implementation 
  triggered an error when adding more segments to the default theme. Since 
  segment contents are now rendered as plain text in Python it's possible to 
  add many more segments in the statusline before hitting this limit.