Python2 manpage generation seems unaffected.
Warnings occur when generating with python3:
.../docs/source/configuration/segments/vim.rst:27: WARNING: error while
formatting arguments for
powerline.segments.vim.plugin.tagbar.current_tag: decoding str is not
supported
This allow packagers to select the sphinx-build command version (python2
or python3) without changing the Makefile:
$ SPHINXBUILD=sphinx-build2 SPHINXOPTS=... make man
- Added support for newest psutil version.
- Added support for non-SSL IMAP4 connection.
- Added support for clickable tab names in Vim.
- Added support for truncating tmux segments.
- Added support for new (i3ipc) module that interacts with i3.
- Added support for i3 modes.
- Fixed coloring of network\_load segment.
- Fixed dash bindings on OS X.
- Fixed parsing numbers starting with 2 supplied by POWERLINE\_\*\_OVERRIDES
environment variables.
Typo prevented integers starting with 2 in affected places (command-line
--renderer-arg parsing and POWERLINE_…_OVERRIDES parsing) from being parsed as
integers.
Differences from the original PR:
- Squashed commits.
- Reworded commit summary.
- No comma after `e.g.`.
- Wrapped lines in the commit message.
- Fixed python-mpd2 link.
Closes#1374
Give some hints to install compatible `mpd` Python module, and rewrite to show
that the Python package is preferred (for example player status isn't supported
properly via `mpc` command).
Fixes two errors that occur while using Powerline with dash under
Mac OS X.
Problem: Execution of the mktemp command fails on OS X.
Cause: mktemp requires a mandatory argument (-t or full path)
Solution: Provide an absolute path as a template to the mktemp command.
Problem: powerline executable fails to be called because its
command line unexpectedly contains spaces.
Cause: The _POWERLINE_JOBS variable contains spaces, because the wc
command returns spaces before the number on OS X.
Solution: Trim the spaces before assigning the value to the variable.