Austin Bingham

Results 233 comments of Austin Bingham
trafficstars

Sorry this took so long...lots of irons in the fire. Take a look at the [parse-on-focus](https://github.com/abingham/emacs-ycmd/tree/parse-on-focus) branch. This adds a new option for `ycmd-parse-conditions` called `first-focus`. If this is in...

@r4nt We've merged in a [change by @ptrv](https://github.com/abingham/emacs-ycmd/commit/7e894ce77ceda635ada16d200fb83d21014fe792) that should address the problem you're seeing. It takes a different approach than the `parse-on-focus` branch, fixing some issues with `desktop.el` integration....

This is likely `virtualenvwrapper.el` attempting to create a new virtual environment. It determines where to create it based on the `venv-location` variable, which by default contains `~/.virtualenvs`. You might just...

26c6732b7ec28f2be39ca74244cbf70f49fa44c8 is a step in the right direction.

I'm personally satisfied with the current use of company-ycmd. The lack of font-lock doesn't really bother me. However, I suppose that template expansion with font-lock would be least marginally better...

OK, thanks for the suggestions. It's always good to get feedback, even if I can't act on it immediately. I'll leave this issue open in case someone feels like working...

I wonder if we could look for `setup.py` files and determine Python versions from the classifiers. This would be clever, though it's not a blanket solution...some projects simply won't have...

@shackra Can you give me the executive summary of that discussion? If it's simply "use `python-shell-interpreter` to run traad", then I don't think that'll work. It seems like that would...

> is not there a way to inform traad of what version of python the user is using by checking the value of python-shell-interpreter? The python interpreter running traad needs...

Ah, yes, we might be able to get that to work. This seems to work for python, ipython, and bpython: ``` python -c "import sys; print(sys.version)" ```