Matt McClure
Matt McClure
I was able to share the instructions between two repositories. For others: To push from your repository clone to a remote: ``` $ git push origin refs/insns/* ``` To fetch...
I wonder if there's a good way to make the instructions part of the commit that results from `git integration --rebuild`. I haven't completely thought it through, but it seems...
I'm not very familiar with Notes. I had been thinking of some way to attach a hidden Blob of instructions to a Commit. I imagine that might not work well...
Something like that might work.
I'm able to `(pymacs-load "ropemacs" "rope-")` after changing `start-process` to `start-file-process`.
I'm working on slightly different path now. I'm using https://github.com/matthewlmcclure/tramp-virtualenv to change remote virtualenvs and update the remote PATH when I change buffers. That eliminates the need to use a...
I made myself [a branch](https://github.com/matthewlmcclure/Pymacs/tree/pinard/Pymacs/issues/41) and added a little reminder in `pymacs.el.in`. Hopefully, I'll get around to implementing it. I'd love to know if someone else beats me to it...
@pinard, Sorry, I haven't revisited this since I last commented. My real interest is #32, specifically so that I can use Rope with multiple Python projects in a single Emacs...
I misspoke. I remember now, my biggest pain point has nothing to do with multiple Python interpreters. Rather, it happens when the remote Python interpreter or its Pymacs process goes...
This is my current workaround to unwedge my Emacs when the Pymacs helper has died and can't restart: ``` (remove-hook 'before-save-hook 'rope-before-save-actions) (remove-hook 'after-save-hook 'rope-after-save-actions) (remove-hook 'kill-emacs-hook 'rope-exiting-actions) ```