Emacs: C-U (79) # » a pretty 79 character length divider
VIM: 79-i-# » see above
Textmate: ????
Or is it just assumed that we'll make a Ruby call or have a snippet somewhere?
|
Emacs: VIM: Textmate: ???? Or is it just assumed that we'll make a Ruby call or have a snippet somewhere? | ||||
|
feedback
|
|
I would create a bundle command to do this. You can take editor selection as input to your script, then replace it with the result of execution. This command, for example, will take a selected number and print the character '#' that number of times.
Of course this example doesn't allow you to specify the character, but it gives you an idea of what's possible. | |||
|
feedback
|
|
By taking the
a step further, you can duplicate the examples you gave in the question. Just make a snippet, called divider or something, set the
Then when you type True, you've lost some of the terseness that you get from vim, but this is far easier to reuse, and you only have to type it once. You can also use whatever language you like. | |||
feedback
|
|
Inspired by the other answers. Make a snippet with the following:
and optionally assign a key sequence to it, e.g. CTRL-SHIFT-R If you type You can also use The string you repeat is enclosed in single quotes, so to repeat ', you have to use \'. | |||
|
feedback
|