Skip to content

Commit 7723c2d

Browse files
committed
Merge branch 'master' into dev
2 parents b303da8 + 180b671 commit 7723c2d

File tree

2 files changed

+20
-7
lines changed

2 files changed

+20
-7
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,19 @@ It's written in Python, and has an object-oriented interface that is easy to ext
1616
and can even be used from the command-line. It even has unit tests covering
1717
some of the more critical parts of the code.
1818

19+
# Getting help
20+
21+
If you're having trouble with Vdebug in any way, here are the steps you can take to get help (in the right order):
22+
23+
1. [Check the issues][3] to see whether it's already come up.
24+
2. Visit the **#vdebug** irc channel on freenode, someone is normally there.
25+
3. [Open a new issue.][4]
26+
1927
# News
2028

21-
Vdebug now has an irc channel on freenode! If you're running into problems installing, configuring or running vdebug, or you just want to ask a general question, join us on **#vdebug**.
29+
**19/07/2013:** there's a known issue with Vdebug and Vim 7.4. Take a look at [issue #98][5] to follow updates and fixes.
30+
31+
**11/06/2013:** Vdebug now has an irc channel on freenode! If you're running into problems installing, configuring or running vdebug, or you just want to ask a general question, join us on **#vdebug**.
2232

2333
# Recent version (version 1.4.1)
2434

@@ -160,3 +170,6 @@ This plugin is released under the [MIT License][1].
160170

161171
[1]: https://raw.github.com/joonty/vdebug/master/LICENCE
162172
[2]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
173+
[3]: https://github.com/joonty/vdebug/issues/
174+
[4]: https://github.com/joonty/vdebug/issues/new
175+
[5]: https://github.com/joonty/vdebug/issues/98

doc/Vdebug.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ able to apply it to your circumstance.
190190
The most popular DBGP debugger for PHP is Xdebug.
191191

192192
I find that the most effective way to install Xdebug is to use PECL, instead
193-
of a OS-level package manager such as apitude or yum. You can also compile it
193+
of a OS-level package manager such as aptitude or yum. You can also compile it
194194
from source if you're feeling hardy. To install it via PECL, run this from a
195195
command line (requires root/admin privileges): >
196196

@@ -449,7 +449,7 @@ variable name, type, length (if applicable) and value are shown. They are shown
449449
as a tree, because arrays/lists and objects have children. Hopefully it's
450450
fairly self-explanatory: right arrows show a closed tree, down arrows show an
451451
open tree and diamonds show variables that don't have children. These markers
452-
be customised (see |VdebugOptions|), and will fall back to ASCII equivalents
452+
can be customised (see |VdebugOptions|), and will fall back to ASCII equivalents
453453
if multi byte support is not enabled in the VIM configuration.
454454

455455
To open a closed tree, navigate to a line with a closed tree (right arrow) and
@@ -481,7 +481,7 @@ can return to the variable context with <F11> (default).
481481
4.2.3 The stack window *VdebugStackWindow*
482482

483483
The stack window shows the current execution stack, which is a list of files
484-
and functions/methods that the program has run through to get the current
484+
and functions/methods that the program has run through to get to the current
485485
position. The top entry ([0]) is always the current position, and the entries
486486
below show the path the script has taken.
487487

@@ -513,7 +513,7 @@ to go for help!
513513

514514
This is a bit of an odd one out, as it doesn't show by default and can be
515515
summoned at will. It lists all the breakpoints that have been set, and shows
516-
their IDs that can be used to remove them.
516+
the IDs that can be used to remove them.
517517

518518
To open the window use the command :BreakpointWindow. It's in a table format,
519519
so hopefully it won't need any more explanation. To close the window again,
@@ -554,7 +554,7 @@ debugging, and the default keys mapped to those commands.
554554

555555
4.3.3 Step in *VdebugCommandStepIn*
556556
Default key: <F3>
557-
Tells the debugger engine to step in to a statement on the current line.
557+
Tells the debugger engine to step into a statement on the current line.
558558
For instance, if there's a function call on the current line it will jump to
559559
the start of that function.
560560

@@ -825,7 +825,7 @@ g:vdebug_options["server"] (default = "localhost")
825825
g:vdebug_options["timeout"] (default = 20)
826826
Number of seconds to wait for when listening for a connection. VIM will
827827
lock up due to the server socket listening for a client connection, so this
828-
timeout is there to protect your VIM for locking up forever!
828+
timeout is there to protect your VIM from locking up forever!
829829

830830
*VdebugOptions-on_close*
831831
g:vdebug_options["on_close"] (default = "detach")

0 commit comments

Comments
 (0)