Pymacs
Pymacs copied to clipboard
Emacs to Python interface
This addresses pinard/Pymacs#46 - the signature for pymacs_load_helper didn't agree between Python and Elisp
Hi pinard, it seems that this problem is still there, any solution yet?
I made virtualenv wrapper for Emacs Lisp to help installation of Emacs packages relying on Python modules: [python-environment.el](https://github.com/tkf/emacs-python-environment). I think it would help Pymacs installation. You can just define a...
So I'm trying to get freex working with Emacs 24. When I run it I get this error: _Pymacs helper did not start within 30 seconds_ and in the `*Pymacs*`...
I installed pymacs0.25 emacs part form marmalade-repo.org by package.el and python part by zipball downloaded from https://github.com/pinard/Pymacs/zipball/v0.25 , but it did not work and the error was "TypeError: pymacs_load_helper() takes...
When I used pymacs it slowed down significantly, even in c++-mode (on rather new processor moving a cursor from line to line took seconds, etc.). My code from .emacs.d/init.el: ```...
The Pymacs 0.25 manual has the following snippet in [Section 3.4.2](http://pymacs.progiciels-bpi.ca/pymacs.html#id22) ``` (pymacs-exec "import re") (setq matcher (pymacs-eval "re.compile('PATTERN').match")) (pymacs-call matcher "PATTERN123") ``` In Emacs24.2 on Ubuntu 12.04 (32-bit) with...
While returning a list of strings from python, I see one element like this: ``` (decode-coding-string "/Applications/Microsoft Office 2011/Office/\345\212\240\350\275\275\351\241\271/Solver.app" 'utf-8) ``` This is completely wrong. It seems the solution is...
hi Pinard, I met the issue described as title. You have provided 2 solutions for that: 1) comment out python-mode.el (Q: I can't find out where to comment the "python-mode")...
The `pymacs-load` function defines lots of new symbols and wreaks havoc because of its dependency on the *Pymacs* buffer's helper process. Pymacs should provide a sane way to unload itself...