summaryrefslogtreecommitdiff
path: root/plugin/vdebug.vim
AgeCommit message (Collapse)Author
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-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-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-07Merge pull request #413 from Garethp/stack-changingIke Devolder
Adding the ability to change stacks
2019-07-06add more clarity to the Vdebug_load_keymaps functionBlackEagle
Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2019-07-05Changing the command nameGareth Parker
2019-07-05Fixing bad configGareth Parker
2019-07-05Another way to let people choose between layoutsGareth Parker
2019-07-04Merge pull request #404 from Garethp/breakpoint-toggleIke Devolder
Adding support for breakpoint enabling/disabling (Solve #393)
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-04Adding a breakpoint status as well as as a tri-state breakpoint cyclingGareth Parker
2019-07-03Adding empty keymapsGareth Parker
2019-07-03Adding support for breakpoint enabling/disablingGareth Parker
2019-06-20Making the window height/width and status bar configurableGareth Parker
2018-11-13Configurable sign charactersRoy-Orbison
Use nicer Unicode characters for signs by default, and allow them to be changed like other options.
2018-08-11Use single quotes instead of double quotesLucas Hoffmann
This is reported by vint.
2018-08-08Remove doautocmd on VdebugPre and VdebugPostLucas Hoffmann
These autocmds could be defined by the user and would have been run at the beginning and end of plugin/vdebug.vim. They are removed as they where never documented. Also there exist other options in vim to achieve the same: Code that should be executed before loading the plugin file can go into the vimrc file and code that should be executed after the plugin was loaded can go into the after directory. These are standard vim mechanisms and they are properly documented (see `:help after-directory` and `:help vimrc`).
2018-08-08Group all autocommands into the Vdebug groupLucas Hoffmann
2018-08-08Merge pull request #373 from lucc/small-cleanupIke Devolder
Remove superfluous :exec
2018-08-02Remove superfluous :execLucas Hoffmann
2018-08-02Remove python initializing fileLucas Hoffmann
As the python code is now stored in a directory known to Vim we can import it directly.
2018-05-02Fix wrong Github pathRudolf Tucek
Since the procject was renamed from joonty/vdebug to vim-vdebug/vdebug, some paths should be updated. Bonus: this will also fix the Travis build badge in the README.md I've blindly searched'n'replaced 'joonty' by 'vim-vdebug' via `find . -type f -exec sed -i -e 's/joonty/vim-vdebug/g' {} \;` and made manual changes if necessary (such as formatting and HTTPS'ing URLs).
2018-03-31use close instead of stop when vim is closingBlackEagle
fixes #341 Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2018-03-21add vim functions to add or set the path mapsBlackEagle
removed the setting of options via the python way and set the options in vimscript, with some exceptions where stated to use other functions or place the desired configuration in .vimrc fixes #228 Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2018-03-03change the window_arrangement so the status sits belowBlackEagle
Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2018-02-10Added check to prevent loading plugin twiceE.J. Sexton
2017-11-22Python3 compatibilityMark Kimsal
Mostly networking changes to work with bytes and changing :python to :python3 and :pyfile to :py3file
2017-07-06Warn the user if :python is not availableLucas Hoffmann
2017-05-31Move python code to pythonx dirLucas Hoffmann
Vim provides support for a special directory in &runtimepath. See `:help oythonx-direcotry` for more info. The start_vdebug.py file can also be referenced relative to the vim script file. That way we get rid of the complicated search in different hard coded directories.
2017-05-14Deprecate stand alone option variablesLucas Hoffmann
2017-04-05Update uninitialized parameter fix documentationPipe Gutierrez
Removes all instances in the documentation where plugin configuration was made via Dictionary key modification.
2017-03-23Merge branch 'fix_uninitialized_param_dictionary' of ↵BlackEagle
https://github.com/Dudemullet/vdebug into v2-integration * 'fix_uninitialized_param_dictionary' of https://github.com/Dudemullet/vdebug: Extracts the get_options method from load_options Moves g:vdebug_options_ to a variables and gets its len for later use Looks for params using the default param key names Signed-off-by: BlackEagle <ike.devolder@gmail.com>
2015-12-13Extracts the get_options method from load_optionsDudemullet
2015-12-13Moves g:vdebug_options_ to a variables and gets its len for later useDudemullet
2015-12-13Looks for params using the default param key namesDudemullet
2015-09-09Fix VdebugEval! and add more test featuresJon Cairns
2015-09-08Merge master branch into version 2Jon Cairns
2015-08-30Merge branch 'master' into persistent-evalBenji Fisher
2015-08-25Bind to all interfaces by default, fix #209Jon Cairns
2015-08-25Check if breakpoint highlights have been predefined, fix #208Jon Cairns
2015-08-24Change default close behaviour to be `stop`, fix #166Jon Cairns
Detach is still available using <F7> (default), but <F6> will now actually stop execution rather than being identical to <F7>
2014-12-23Allow for persistent code evaluation in the watch window.Benji Fisher
After ":VdebugEval! code", continue to evaluate code in the watch window after running through the code. Clear with ":VdebugEval!".
2014-09-08VdebugTraceRyu, Han-seok
2014-09-08firstRyu, Han-seok
2014-09-08first commitRyu, Han-seok
2014-09-08first commitRyu, Han-seok