-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Control commands spawned by pipenv-run #15
Comments
@jsandovalc thanks for the report. I guess we could pipe Some better solutions might be:
Thoughts on what would work for your use case? |
I think both proposed solutions would work well for my workflow. But, I feel that Thanks again :) I feel this project has a lot of potential because emacs needs a good pipenv integration. |
@jsandovalc great, thanks for the feedback. My general thinking was to iterate on However, I'm not about to do that work anytime soon, so, I think the best solution for users as a next step will be to generate a new buffer for each I'm not sure when I will get to this, but I will certainly try to look at it in the coming weeks, and of course, I'd definitely be happy for a PR from you or anyone that implements something similar. |
I understand. The UI on Pipenv sounds really interesting. Would it be something similar to the magit UI? My elisp knowledge is very shallow to implement changes for pipenv.el fast. I'm not even even sure how to setup an environment to develop an elisp extension. But it's something I've wanted to learn. I've only created some small functions in my setup for some simple things in my workflow. But I really want to integrate pipenv with emacs, so, this could be the motivation. |
Yes. Less complex, but yes.
So was mine before |
Maybe it's a silly question, but I have doubts about how to develop an emacs extension I'm currently using. Should I disable it and import it from the github repo or maybe should I use a second clean instance of emacs for running the developing lib?. Anyway, the first thing I'll try to do is run the tests. Thanks! |
@jsandovalc not at all! It is one of those "easy, once you know how" things. First, clone the
If you use
If you don't use
Also, see the tasks you can run in the Makefile, and look at the CI configuration for their use. |
Hi.
First of all, thanks for the effort with pipenv.el.
I work with python and a JS frontend. I have a command in npm that starts the python server on a port. When I use pipenv, I usually run
pipenv run npm run start
to execute the server in the virtualenv. I tried to do the same in emacs with pipenv.el and it works, but, I have no simple way to kill or restart the process (and it blocks a port). I had to kill the Pipenv buffer.Right now I'm using
pipenv-shel
l to runnpm run start
. I'm not sure if it would be a good idea to add a way to cancel the process running with pipenv-run.Thanks. I had been expecting a package for pipenv for a couple of months.
The text was updated successfully, but these errors were encountered: