summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-03-29Merge pull request #446 from StotoV/444HEADmasterIke Devolder
Source window jumps to correct buffer with one item stack
2020-03-29Merge pull request #441 from aerostone/fix-winIke Devolder
fix log and breakpoint miss hit on win os
2020-03-23SOURCE WINDOW JUMPS TO CORRECT BUFFER WHEN THE SOURCE WINDOW BUFFER IS ↵Tom Stock
SWITCHED MANUALLY #444
2020-03-20update testguantion
2020-02-29fix log and breakpoint miss hit on win osguantion
2020-02-04Merge pull request #439 from JJP7/masterIke Devolder
added comma
2020-02-04added commaJJP7
2019-11-18Merge pull request #432 from skotos/fix-423Ike Devolder
Fix #423 - Vim Hangs on exit if vdebug is running.
2019-11-18Merge pull request #431 from baptx/patch-1Ike Devolder
clarify that the master branch is based on version 2.0.0, not 1.4.1
2019-11-18Merge pull request #428 from determin1st/masterIke Devolder
fixes startup issue on win7
2019-11-15Fix #423 - Vim Hangs on exit if vdebug is running.Scott Tester
2019-11-08clarify that the master branch is based on version 2.0.0, not 1.4.1baptx
#430
2019-10-06fixes startup issue on win7determin1st
2019-08-05Merge pull request #424 from pceuropa/masterIke Devolder
Init changes
2019-08-04Merge branch 'master' of github.com:pceuropa/vdebugRafal Marguzewicz
2019-08-04ChangesRafal Marguzewicz
Remove unused packages: 1 dbgp.py|2 col 1 error| 'socket' imported but unused [F401] [python/flake8] 2 dbgp.py|3 col 1 error| 'sys' imported but unused [F401] [python/flake8] 3 dbgp.py|4 col 1 error| 'time' imported but unused [F401] [python/flake8] Standard PEP8: 4 dbgp.py|162 col 28 error| E225 missing whitespace around operator [python/pep8] 5 dbgp.py|162 col 28 error| missing whitespace around operator [E225] [python/flake8] 6 dbgp.py|254 col 28 error| E226 missing whitespace around arithmetic operator [python/pep8] 7 dbgp.py|254 col 28 error| missing whitespace around arithmetic operator [E226] [python/flake8] 8 dbgp.py|257 col 29 error| E226 missing whitespace around arithmetic operator [python/pep8] 9 dbgp.py|257 col 29 error| missing whitespace around arithmetic operator [E226] [python/flake8] 10 dbgp.py|276 col 50 error| E226 missing whitespace around arithmetic operator [python/pep8] Changes to be committed: modified: python3/vdebug/dbgp.py
2019-07-13Merge branch 'Garethp-debugger-layouts'BlackEagle
* Garethp-debugger-layouts: add documentation about layout and simplified status move default layouts in python and have layout option Fixing bad config Another way to let people choose between layouts
2019-07-13Merge pull request #421 from vim-vdebug/documentationIke Devolder
Documentation
2019-07-13add documentation about layout and simplified statusBlackEagle
Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-13move default layouts in python and have layout optionBlackEagle
Use layout in vdebug_options to have a vertical or horizontal layout, these are now fixed layouts. Later we could add a custom layout if that would be desired. Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-13Merge branch 'debugger-layouts' of https://github.com/Garethp/vdebug into ↵BlackEagle
Garethp-debugger-layouts * 'debugger-layouts' of https://github.com/Garethp/vdebug: Fixing bad config Another way to let people choose between layouts Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-10add some extra info for python3BlackEagle
Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-08change NodeJS set up to NodeJS 0.10 setupBlackEagle
It does not seem that newer versions are properly supported and will be anytime soon. Closes #356 Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-07Merge pull request #419 from vim-vdebug/check-if-is-connectedIke Devolder
first check if there is a connection before acting on some events
2019-07-07Merge pull request #413 from Garethp/stack-changingIke Devolder
Adding the ability to change stacks
2019-07-07Merge pull request #418 from vim-vdebug/fix-362Ike Devolder
convert status to str first and check if it exists
2019-07-07first check if there is a connection before acting on some eventsBlackEagle
The events 'step over', 'step in', 'step out', 'run to cursor' can only ben done when there is an active debug session. So first check if we are actually connected before allowing the rest of the code to run Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-06convert status to str first and check if it existsBlackEagle
Then start checking for interactive or stopping/stopped fixes #362 Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-06Merge pull request #417 from vim-vdebug/enhance-consistency-non-debug-keymapsIke Devolder
add more clarity to the Vdebug_load_keymaps function
2019-07-06add more clarity to the Vdebug_load_keymaps functionBlackEagle
Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-05Merge pull request #416 from vim-vdebug/fix-detach-no-sessionIke Devolder
first check connection before detaching
2019-07-05Merge pull request #415 from vim-vdebug/fix-395Ike Devolder
when coming back from eval, pass context 0 to the event
2019-07-05Merge pull request #412 from Garethp/remove-breakpoint-on-empty-lineIke Devolder
Allow removing a breakpoint from an empty line
2019-07-05first check connection before detachingBlackEagle
When there is no connection and you were detaching you just got a stacktrace. So first check if there is an actual connection to detach from. Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-05when coming back from eval, pass context 0 to the eventBlackEagle
this will return us to the local variables context from the eval. fixes #395 Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-05Changing the command nameGareth Parker
2019-07-05Adding the ability to change what stack is being shown in the watch windowGareth Parker
2019-07-05Allow removing a breakpoint from an empty lineGareth Parker
2019-07-05Fixing bad configGareth Parker
2019-07-05Another way to let people choose between layoutsGareth Parker
2019-07-04Merge pull request #409 from vim-vdebug/revert-406-heartbeatIke Devolder
Revert "Adding a heartbeat"
2019-07-04Revert "Adding a heartbeat"Ike Devolder
2019-07-04Merge pull request #407 from Garethp/port-checkingIke Devolder
Reports to the user if the port they want is already taken
2019-07-04Merge pull request #406 from Garethp/heartbeatIke Devolder
Adding a heartbeat
2019-07-04Merge pull request #404 from Garethp/breakpoint-toggleIke Devolder
Adding support for breakpoint enabling/disabling (Solve #393)
2019-07-04simplified status, take it into account for all printing in StatusWindowBlackEagle
Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-04simplified status, also use a glyph for listeningBlackEagle
Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-04remove the default width of DebuggerStatusBlackEagle
This makes sure on a fullscreen widescreen monitor you have 2 equals sized panels below your sourcecode. Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-04Merge pull request #402 from Garethp/masterIke Devolder
Making the window height/width and status bar configurable
2019-07-04Adding a breakpoint status as well as as a tri-state breakpoint cyclingGareth Parker