File: README

package info (click to toggle)
llvm-toolchain-3.5 1%3A3.5-10
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 282,028 kB
  • ctags: 310,872
  • sloc: cpp: 1,883,926; ansic: 310,731; objc: 86,612; python: 79,565; asm: 65,844; sh: 9,829; makefile: 6,057; perl: 5,589; ml: 5,254; pascal: 3,285; lisp: 1,640; xml: 686; cs: 239; csh: 117
file content (59 lines) | stat: -rw-r--r-- 1,509 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

=================
LLDB Vim Frontend
=================

Prerequisites
-------------

This plugin is known to work with the following flavours of Vim:

  * Linux (tested on Ubuntu 12.04/12.10):
      * vim/gvim (from vim-gnome package version 7.3)

  * Mac OS X (tested on Mountain Lion)
      * Vim command-line (7.3 from Xcode)
      * MacVim 7.3

To install the plugin, ensure you have
  * a working version of lldb on your path, or the environment variable LLDB
    pointing to the lldb binary you would like to use.
  * a python-enabled vim (check with ":python print 2")


Installation
------------

1) Install the Vim pathogen plugin (it keeps installed plugins organized):

    https://github.com/tpope/vim-pathogen

  Or, for the impatient:

mkdir -p ~/.vim/autoload ~/.vim/bundle; \
curl -Sso ~/.vim/autoload/pathogen.vim \
    https://raw.github.com/tpope/vim-pathogen/master/autoload/pathogen.vim

2) Symlink (or copy) ~/.vim/bundle/vim-lldb to this directory:

ln -sf <lldb-dir>/utils/vim-lldb ~/.vim/bundle/vim-lldb

3) Update your help-tags. Start vim, do:

    :Helptags

4) Have fun!


Usage/Getting Help
------------------
All LLDB commands (with tab-completion) can be accessed in Vim's
command mode. Try it out by typing:

:L<tab>

There are several sources of help available:

:help lldb                  -- Documentation for this plugin
:Lhelp                      -- LLDB's built-in help system (i.e lldb 'help' command)
:Lscript help (lldb)        -- Complete LLDB Python API reference