|
2 | 2 |
|
3 | 3 | [](https://travis-ci.org/joonty/vdebug) |
4 | 4 |
|
5 | | -## Important announcement |
6 | | - |
7 | | -*I'm looking for someone to help maintain Vdebug!* Read the following and please help if you can: |
8 | | -http://blog.joncairns.com/2015/01/looking-for-another-vdebug-maintainer/ |
9 | | - |
10 | 5 | ## Introduction |
11 | 6 |
|
12 | 7 | Vdebug is a new, fast, powerful debugger client for Vim. It's multi-language, |
@@ -35,26 +30,29 @@ If you're having trouble with Vdebug in any way, here are the steps you can take |
35 | 30 |
|
36 | 31 | Follow me on Twitter, [@joonty](http://twitter.com/joonty), for Vdebug updates and release news. |
37 | 32 |
|
38 | | -* **15/05/2014:** Version 1.4.2 was released. This fixes major problems with the latest version of Vim, which has stricter rules around function naming. See [this pull request for more details][5] |
| 33 | +* **26/08/2015:** Version 1.5.0 released. This has a whole series of fixes and even a couple of new features. See below for more information. |
| 34 | +* **15/05/2014:** Version 1.4.2 released. This fixes major problems with the latest version of Vim, which has stricter rules around function naming. See [this pull request for more details][5] |
39 | 35 | * **12/04/2014:** My son was born! Hence no contact or work on Vdebug for the following month. |
40 | 36 |
|
41 | | - |
42 | | -## Recent version (version 1.4.2) |
| 37 | +## Recent version (version 1.5.0) |
43 | 38 |
|
44 | 39 | ### Bug fixes: |
45 | | - * Allow overriding of options dictionary after sourcing vdebug (issues #112, #113) |
46 | | - * Show local file path in stack window if using path mapping (issue #118) |
47 | | - * Change function names for stricter rules introduced in Vim v.7.4.260 (thanks @BlackEagle, #158 and #155) |
48 | | - |
49 | | -### Documentation: |
50 | | - * Various fixes |
51 | | - * Mention vim-nox package for Debian (thanks @henningda, #138) |
52 | | - * Add Python installation for Windows information (issue #135) |
| 40 | + * Fix for remote and local file paths with a windows/unix setup (thanks @brothert, #130) |
| 41 | + * Sort path maps by remote path length (thanks @ragol and @adambiggs, #153, #201) |
| 42 | + * Default "stop" behaviour (default <F6>) actually stops rather than detaches (issue #166) |
| 43 | + * Various documentation fixes (issue #172, issue #223, thanks @loonies for #210) |
| 44 | + * Add documentation to show that komodo-debug doesn't work with nodejs > 0.10 (#202, #223) |
| 45 | + * Don't override previously defined breakpoint highlights (#208) |
53 | 46 |
|
54 | 47 | ### Features: |
55 | | - * Add completion to :Breakpoint command (thanks @tommcdo, #124) |
56 | | - * Add VdebugStart command (thanks @blueyed, #132) |
57 | | - * Sleep for 100ms in wait loop, don't consume as much CPU (thanks @blueyed, #133) |
| 48 | + * Add support for Python 2.4 (thanks @mbarbon, #189) |
| 49 | + * Add Vagrantfile and bootstrap for easier local development |
| 50 | + * Add new VdebugTrace command for tracking individual variables and expressions (thanks @escher9, #178) |
| 51 | + * Show ellipses for truncated arrays in watch window (#177) |
| 52 | + * Bind to all available interfaces by default, instead of just localhost (#209, thanks @zolem) |
| 53 | + |
| 54 | +### Misc: |
| 55 | + * Changed HISTORY to CHANGELOG |
58 | 56 |
|
59 | 57 | ## How to use |
60 | 58 |
|
@@ -135,7 +133,7 @@ Once in debugging mode, the following default mappings are available: |
135 | 133 | * `<F2>`: step over |
136 | 134 | * `<F3>`: step into |
137 | 135 | * `<F4>`: step out |
138 | | - * `<F6>`: stop debugging |
| 136 | + * `<F6>`: stop debugging (kills script) |
139 | 137 | * `<F7>`: detach script from debugger |
140 | 138 | * `<F9>`: run to cursor |
141 | 139 | * `<F10>`: toggle line breakpoint |
|
0 commit comments