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
|
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:
Probably not an unheard of line of code in python land | ||||
|
feedback
|
|
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.
| |||
|
feedback
|
|
Why not try the vimpdb plugin? Alternatively, if your looking for snippet functionality, the combination of the supertab and snipmate plugins works great. | |||||
feedback
|
|
Using registers? write that line somewhere and copy it to register
or use abbreviations
| |||
|
feedback
|
|
IMHO, I'd use a simple mapping (without functions):
To insert If you want to insert the code before the current line replace o by O:
| |||
|
feedback
|