インストールの推奨事項に従って、pip installを使用して電力線をインストールしました。プロンプトとしてのzshとステータスラインとしてのtmuxの両方で正常に動作していますが、vimで動作させることはできません。
以下をvimrcに追加すると、
python from powerline.vim import setup as powerline_setup
python powerline_setup()
python del powerline_setup
次のエラーが発生します
Error detected while processing /home/jordan/.vimrc:
line 1:
E319: Sorry, the command is not available in this version: python from powerline.vim import setup as powerline_setup
line 2:
E319: Sorry, the command is not available in this version: python powerline_setup()
line 3:
E319: Sorry, the command is not available in this version: python del powerline_setup
編集:私のバージョンのvim(vim.gnome)がPythonサポートでコンパイルされていることを確認した後、それが(python3)であることに気付きました。そのため、インストール手順に従ってvimrcをpython3を使用するように変更し、以下を取得しました。
Error detected while processing /home/jordan/.vimrc:
line 1:
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named 'powerline'
line 2:
Traceback (most recent call last):
File "<string>", line 1, in <module>
NameError: name 'powerline_setup' is not defined
line 3:
Traceback (most recent call last):
File "<string>", line 1, in <module>
NameError: name 'powerline_setup' is not defined
どんなアイデアでも、これは私の機知で終わります!
解決済みの編集:python3で動作させることができませんでしたが、vim.gnomeとvim.basicでサポートされているPythonの唯一のバージョンのようです。
私apt install vim-nox-py2
はpython 2をサポートするvim.noxをインストールしましたが、すべて機能します。うまくいけば、これは他の誰かの頭痛を解決します。