Marius Gedminas
Marius Gedminas
I'm often running things like `tox -p auto -e py27,py35 -- testfile::test_function` from Vim, using its builtin quickfix window to look at the errors. (I've a plugin that runs the...
[pipsi](https://pypi.org/project/pipsi/) is a tool that creates virtualenvs and symlinks tools into your PATH. E.g. pipsi install ansible-cmdb is roughly equivalent to virtualenv ~/.local/venvs/ansible-cmdb ~/.local/venvs/ansible-cmdb/bin/pip install ansible-cmdb ln -s ~/.local/venvs/ansible-cmdb/bin/ansible-cmdb ~/.local/bin/ansible-cmdb...
Should fix #190 and related issues (e.g. the previous shell wrapper script would not have worked correctly if ansible-cmdb was installed into a non-activated virtualenv).
Steps to reproduce: ``` $ jupyter-notebook [I 14:59:35.624 NotebookApp] Serving notebooks from local directory: /home/mg [I 14:59:35.624 NotebookApp] The Jupyter Notebook is running at: [I 14:59:35.624 NotebookApp] http://localhost:8888/?token=a4a2d5dfeaf5a426507e887f3909cf787b3426e51a7d2954 [I 14:59:35.624...
This patch adds support for Python 3, without dropping support for Python 2. Fixes #125. (This branch was based on top of my previous PR, #135, because I had to...
This way you can run it under Wayland from the source tree without having to use the desktop file. This commit belongs with #135, but it gets a bit hairy...
I was creating a pull request for Ansible by running hub pull-request. It downloaded Ansible's PULL_REQUEST_TEMPLATE.md very helpfully and spawned Vim for me. I remembered about issue #1377 and decide...
I noticed that my vim stopped highlighting YAML syntax errors. I ran yamllint directly on a file I was editing and saw ``` Traceback (most recent call last): File "/home/mg/.local/bin/yamllint",...
**Describe the bug** I've noticed duplicate tags in files I've edited. They look like this: ``` # pri kind tag file 1 F f createReportCompetencyModel /home/mg/src/ivija/src/ivija/threesixty/scoringmodel.py def createReportCompetencyModel(threesixty): 2 F...
Since we cannot know in every case whether the tags file contains absolute or relative pathnames, let's remove old tags that use either version of the pathname. Fixes #231 for...