I'm looking for the way to insert a line of code with a keystroke like leaderp in Macvim

I want to insert the following line of code:

import pdb; pdb.set_trace()

Probably not an unheard of line of code in python land

link|improve this question
feedback

4 Answers

up vote 1 down vote accepted

This might not be the best vimscript every but it does wat you want! :-) Just place this in your .vimrc and you can call it with leader p.

map <Leader>p :call InsertLine()<CR>

function! InsertLine()
  let trace = expand("import pdb; pdb.set_trace()")
  execute "normal o".trace
endfunction
link|improve this answer
This is actually perfect! Thanks – svanelferen Jul 1 '11 at 14:34
feedback

Why not try the vimpdb plugin? Alternatively, if your looking for snippet functionality, the combination of the supertab and snipmate plugins works great.

link|improve this answer
+1 for snipmate. I use it for exactly this. – Daniel Roseman Jul 1 '11 at 13:47
I love vim, but I wanted an ide feature set. These three plugins, plus project, conqueterm, taglist, and a couple other minor ones give me the best of both worlds. And I have a working ide for specialized "languages" that I have to work with. Eclipse won't do psl. – Spencer Rathbun Jul 1 '11 at 14:43
feedback

Using registers?

write that line somewhere and copy it to register p, then use "pp to print it

import pdb; pdb.set_trace()

"pY

"pp
import pdb; pdb.set_trace()

or use abbreviations

:ab teh the
link|improve this answer
feedback

IMHO, I'd use a simple mapping (without functions):

nnoremap <leader>p oimport pdb; pdb.set_trace()^[

To insert ^[, press ctrlv and then esq. When pressing o, it would enter in insert mode with o (inserting a blank line after the current one) and then type import pdb; pdb.set_trace(). After that it will press the esq key (^[).

If you want to insert the code before the current line replace o by O:

nnoremap <leader>p Oimport pdb; pdb.set_trace()^[
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.