vote up 2 vote down star

Related to vim-how-to-reformat-a-set-of-lines-into-a-single-lines-if-the-line-is-a-single

I'd like gq to treat a '.' as the end of a sentence in latex. Combined with a high value of tw, the intention is automatically reformat a paragraph into a list of lines.

(FYI, this is a much nicer way to edit latex, if you are wondering)

flag

80% accept rate

1 Answer

vote up 1 vote down check

When I edit Latex, I use

:imap <Space><Space> <CR>

Don't think that it needs reformatting tricks.


Paul Biggar comments out that the similar solution works for people not used to putting two spaces at the end of each sentence:

:imap .<Space> .<CR>
link|flag
Nice idea, but I never learned to put two spaces after the end of a sentence... – Paul Biggar Sep 20 at 20:17
1  
Based on that, I can just make it imap .<Space> .<CR>. Thanks. – Paul Biggar Sep 24 at 17:52
@Paul Biggar: I merged your idea into my answer. You don't mind, do you? – Pavel Shved Sep 24 at 19:50
@Pavel Shved: Of course not, I'd hoped you would. I didn't want to steal what's essentially your idea for my own answer :) – Paul Biggar Sep 24 at 19:53

Your Answer

Get an OpenID
or

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