我正在尝试使用我的vim编辑器在konsole中使用powerline插件,但还没有成功。
我已经安装了powerline
sudo pip install git+git://github.com/Lokaltog/powerline
因为根据https://powerline.readthedocs.org/en/latest/overview.html,zsh可以使用相同的源,tmux等.zsh对于powerline很好,但我的vim不识别powerline。
我的电力线安装路径:/usr/lib/python2.7/site-packages /
我也使用补丁字体Meslo。
我的终端模拟器是konsole,xterm设置为$TERM='xterm-256color'
并使用CSApprox插件进行colorscheme支持。
到目前为止,我已尝试使用其文档中的以下选项:
1)
python from powerline.vim import setup as powerline_setup
{
{1}}
python powerline_setup()
回溯:
python del powerline_setup
2).vimrc:
>>> from powerline.vim import setup
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/site-packages/powerline/vim.py", line 9, in <module>
import vim
File "vim.py", line 25, in <module>
class VimPowerline(Powerline):
File "vim.py", line 98, in VimPowerline
if all((hasattr(vim.current.window, attr) for attr in ('options', 'vars', 'number'))):
File "vim.py", line 98, in <genexpr>
if all((hasattr(vim.current.window, attr) for attr in ('options', 'vars', 'number'))):
AttributeError: 'module' object has no attribute 'current'
但我仍然无法获得那些花哨的箭头型外观。