diff options
author | Ike Devolder <ike.devolder@gmail.com> | 2019-07-13 14:29:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-13 14:29:53 +0200 |
commit | 7479feb58adce1e8397f183a89641d0310ce52a3 (patch) | |
tree | 6c4e7ddad093793b7253294a2565e1595032e044 | |
parent | a4fdbb27bdbdee8a56b80505ada9a71ed63b281f (diff) | |
parent | 2f6d923d6a6dd66073846f6ee9beefe1c26ad6eb (diff) | |
download | vdebug-7479feb58adce1e8397f183a89641d0310ce52a3.zip |
Merge pull request #421 from vim-vdebug/documentation
Documentation
-rw-r--r-- | doc/Vdebug.txt | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/doc/Vdebug.txt b/doc/Vdebug.txt index f7716f5..e138eda 100644 --- a/doc/Vdebug.txt +++ b/doc/Vdebug.txt @@ -28,7 +28,7 @@ CONTENTS *Vdebug-contents* 3.2 Python set up............................|VdebugSetUpPython| 3.3 Ruby set up..............................|VdebugSetUpRuby| 3.4 Perl set up..............................|VdebugSetUpPerl| - 3.5 NodeJS set up............................|VdebugSetUpNodejs| + 3.5 NodeJS 0.10 set up.......................|VdebugSetUpNodejs| 3.6 TCL/Wish set up..........................|VdebugSetUpTcl| 4. Usage.........................................|VdebugUsage| 4.1 Starting the debugger....................|VdebugStart| @@ -243,7 +243,7 @@ but to use Vdebug in conjunction with your Python scripts you will have to grab the "pydbgp" tool, created by ActiveState (who make the Komodo Edit/IDE software). -To do this, go to http://code.activestate.com/komodo/remotedebugging/, +To do this, go to https://code.activestate.com/komodo/remotedebugging/, download the Python client for your OS and extract it. Inside this package is a binary file called pydbgp that we can include when @@ -272,6 +272,14 @@ If using unix you can use the `patch` command to apply the changes, e.g: > < If you're still having trouble, drop me an email. +For python3 you can also try to use +https://github.com/agroszer/komodo-python3-dbgp which is basically a repack of +the pydbgp from activestate to make it usable with pip + +Try installing and using it like this: > + pip install komodo-python3-dbgp +< + ------------------------------------------------------------------------------ 3.3 Ruby set up *VdebugSetUpRuby* @@ -353,7 +361,7 @@ If you haven't started Vdebug you will get a message saying that it can't connect. This means you've set it up correctly. ------------------------------------------------------------------------------ -3.5 NodeJS set up *VdebugSetUpNodejs* +3.5 NodeJS 0.10 set up *VdebugSetUpNodejs* NodeJS is the easiest language to set up for debugging with Vdebug, as Activestate have made the debugger engine available through npm. The only catch |