summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoel Bradshaw <cincodenada@gmail.com>2016-04-28 11:48:24 -0700
committerJoel Bradshaw <cincodenada@gmail.com>2016-04-28 11:54:13 -0700
commitcd9926fc0a72db5f2240af9dc3273a66dcbb0956 (patch)
treef2dbae96143f4131bb0d60aaff62ab9ca5f70af7 /README.md
parentb319e3ab6dd72486775f9b00c66112a56c4584df (diff)
downloadvdebug-cd9926fc0a72db5f2240af9dc3273a66dcbb0956.zip
Capitalize Vundle and add in-vim install method
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 11 insertions, 1 deletions
diff --git a/README.md b/README.md
index 7c86a94..9f5bf68 100644
--- a/README.md
+++ b/README.md
@@ -101,7 +101,7 @@ called "python".
Clone this repository in your `~/.vim/bundle` directory
-### Using vundle
+### Using Vundle
Add this to your `~/.vimrc` file:
@@ -115,6 +115,16 @@ Then, from the command line, run:
vim +PluginInstall +qall
```
+Or, in vim, run:
+```vim
+:PluginInstall
+```
+
+For new changes to take effect, you may have to reload your .vimrc first:
+```vim
+:source $MYVIMRC
+```
+
## Quick guide
Set up any DBGP protocol debugger, e.g. Xdebug. (See :help VdebugSetUp). Start Vdebug with `<F5>`, which will make it wait for an incoming connection. Run the script you want to debug, with the debugging engine enabled. A new tab will open with the debugging interface.