How to use pydev in sublimeREPL sublime use

I was wondering if PyDev can be used in Sublime. Because it has all the great debugging features that are missing in Sublime. I know that it was not implemented, but I think that with a few tricks we can use PyDev in Sublime.

There is also a SublimeREPL plugin that allows you to run the interpreter inside Sublime. https://github.com/wuub/SublimeREPL

In addition, this remote debugging feature from PyDev is documented here, and I think we can take advantage of it. http://pydev.org/manual_adv_remote_debugger.html

Any brainstorming on how to do this would be appreciated, because I think it is possible, at least in theory, with some hacks!

PS I am using Sublime Text 3 and Ubuntu 13.10 64-bit. In addition, I have Eclipse and Pydev installed.

+4
source share
1 answer

You will need to create a whole package containing a build system, syntax support, etc. .... which is hard for me to say, since I never used pydev, but the goal would undoubtedly be to mimic the pydev IDE in a sublime .

I don't know anything about what allows remote debugging in exalted text, so this would need to be encoded as part of your package.

, , , , , https://packagecontrol.io/, , , - , , , , .

, . , , , , :

packagecontrol.io/docs/submitting_a_package

sublimetext.com/docs/3/packages.html

sublimetext.com/docs/3/

unix REPL:

github.com/spywhere/Terminality/ , ...

, , pydev, , , , pydev , ?

+1

Source: https://habr.com/ru/post/1528914/


All Articles