pseyfert
pseyfert
https://cmake.org/cmake/help/v3.17/release/3.17.html#command-line somewhat related, the release notes of the latest cmake release mention `--debug-find` as new option.
Thanks for highlighting me. Background for `GOROOT` I believe I had `go build/run` in mind and then wanted the completion to provide anything that would result in a valid call...
I took the liberty to implement @okapia 's suggestion in https://github.com/pseyfert/zsh-completions/commit/18de228f457abd77c8090148cbc2f42c746b6e45 . What I don't see is how to implement disable-by-default with `_call_program` though. (I was thinking that the behavior...
I ran into this issue after upgrading from 1.0.7 to 1.1.1. Investigating … EDIT: file said 1.0.6, but turns out it corresponds to git tag 1.0.7
So my understanding is, this is due to the following change from 1.0.7 to 1.1.0: In 1.0.7 the buffer gets written to a temporary file on which autopep8 is run....
Thanks for the quick feedback. I agree upgrading autopep8 is reasonable, v0.9.1 just is the debian stable and I was wondering why things still worked with vim-autopep8 v1.0.7. Anyway, I...
c28fc9aa6e33290b5e166cf44103c81b8a6ec2b3 fixes the behavior for me in a debian:experimental docker container (python2, autopep8 1.3.4). With autopep8 0.9.1 on stable, the issue persists (PYTHONIOENCODING apparently ignored), but I'm out of ideas...
I'm using this Dockerfile at the moment: ``` FROM debian:experimental RUN apt-get update && apt-get -y upgrade && apt install -y git vim-autopep8 RUN git clone https://github.com/andrenarchy/libfulltext.git CMD echo "locale:";...
Not sure it is of great help, but i was now trying this https://github.com/pseyfert/fitfile-jugglers/commit/2f17db56dfc79eab13200909a018b46f2c528156 add a callback handler to my axes object, such that when i zoom in, I can...
thanks for spotting. i just added the `//` and `/* */` comments from filetype='cpp' but seems i haven't set them correctly … debugging …