falloutphil

Results 12 comments of falloutphil

> Thanks for the report! It looks like git has dropped a new config option that we should probably honor. Thanks for the reply @ethomson - can you elborate on...

I'd expect this commit (https://github.com/jorgenschaefer/pyvenv/commit/392e28dad42dc6cc9507e496391a32482f9f1881) to fallback to "-m venv" use if virtualenv isn't installed: Are people saying there is not correctly functioning support with the latest version (this commit...

I have a weirder edge-case. For every other command the sourcing of `/usr/lib/systemd/system-environment-generators/80-genie-envar.sh` works fine, but specifically for `netsh.exe` I find the only way I can run it once a...

A quick cheap and cheerful workaround is: ```elisp ;; Used when wanting to switch remote servers (require 'anaconda-mode) (defun stop-anaconda () "Stop any currently running anaconda-mode process" (interactive) (anaconda-mode-stop) )...

My guess from inspecting the code is that we need a new `defcustom` called `anaconda-mode-disable-rpc` which should have 3 states - never, remote, always Then here: https://github.com/pythonic-emacs/anaconda-mode/blob/344727c9e07e108896740c782689bf3588edcce5/anaconda-mode.el#L358 We need to...

Hi @ziyangli - can you explain exact steps on how to recreate this issue? It's strange that you're getting a timeout error rather than a concrete refusal, but I'd need...

Thanks for the extra info @ziyangli. First thing when you say you open a Python file - so I'm 100% clear - this is a **remote** Python file, opened using...

Thanks for the response. Yes agreed about use of `defvar`. I'm not a huge fan of Custom either, but I've been spending the last few weeks trying to make it...

@danielzfranklin - did you ever get to the bottom of your issue? If yes could you share the steps you took to diagnose/fix? I had attempted almost exactly the same...

@danielzfranklin in my case I hadn't set `smtpmail-smtp-user` to my e-mail address. This was being used by `smtpmail-try-auth-methods` to pass the username to `auth-source-xoauth2--smtpmail-auth-method`. I used the debugger to inspect...