Vim Tips Wiki
(Remove html character entities)
(Change <tt> to <code>, perhaps also minor tweak.)
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
 
|previous=1202
 
|previous=1202
 
|next=1204
 
|next=1204
|created=April 16, 2006
+
|created=2006
 
|complexity=basic
 
|complexity=basic
|author=Anon
+
|author=
 
|version=5.7
 
|version=5.7
 
|rating=13/7
 
|rating=13/7
Line 26: Line 26:
   
 
==Comments==
 
==Comments==
Not sure if Tlist and VTreeExplore can be used with |, but consider (untested):
+
Not sure if Tlist and VTreeExplore can be used with <code>|</code>, but consider (untested):
 
 
<pre>
 
<pre>
 
map <F12> <Esc>:Tlist <Bar> wincmd h <Bar> wincmd s <Bar> VTreeExplore <Bar> set nonu <Bar> wincmd l<CR>
 
map <F12> <Esc>:Tlist <Bar> wincmd h <Bar> wincmd s <Bar> VTreeExplore <Bar> set nonu <Bar> wincmd l<CR>

Latest revision as of 06:13, 13 July 2012

Tip 1203 Printable Monobook Previous Next

created 2006 · complexity basic · version 5.7


A simple mapping to quickly set up a couple of VTreeExplorer and TagList in the left side of your Vim window. Add the following to your vimrc:

map <F12> <Esc>:Tlist<CR><C-W>h<C-W>s:VTreeExplore<CR>:set nonu<CR><C-W>l

The mapping does the following:

  • Opens the TagList (opens left by default).
  • Switches to the TagList window and splits it.
  • Opens VTreeExplorer in the split window.
  • Turns of line numbering in the VTreeExplorer.
  • Switches back to the window where you started.

Comments[]

Not sure if Tlist and VTreeExplore can be used with |, but consider (untested):

map <F12> <Esc>:Tlist <Bar> wincmd h <Bar> wincmd s <Bar> VTreeExplore <Bar> set nonu <Bar> wincmd l<CR>

:help :wincmd

Also consider using 'nnoremap' and 'inoremap' and possibly 'vnoremap' rather than just 'map'.