Tagged Questions

26
votes
2answers
1k views

Word Wrap in Vim (preserving indentation)

I was just looking at this post which describes how to wrap entire words in vim. The accepted solution was this: :set formatoptions=l :set lbr Which takes this text (tabs are shown as \t): ...
23
votes
6answers
6k views

Smart Wrap in Vim

I have been wondering if Vim has the capability to smart wrap lines of code, so that it keeps the same indentation as the line that it is indenting. I have noticed it on some other text editor, such ...
14
votes
4answers
6k views

Word wrap in Gvim

How do I make Gvim word wrap in such a way that doesn't break words in the middle?
10
votes
1answer
477 views

make gvim treat wrapped line as new line

When I press "j" or arrow down in vim/gvim the cursor moves to the next line. which is good for writing code. When writing text however the lines are usually much longer then the text with. Therefore ...
9
votes
1answer
2k views

vim command to restructure/force text to 80 columns

I know there are ways to automatically set the width of text in vim using set textwidth (like http://stackoverflow.com/questions/235439/vim-80-column-layout-concerns). What I am looking for is ...
6
votes
2answers
931 views

Vim, LaTeX, word-wrapping, and version control

I'm writing a LaTeX document in vim, and I have it hard wrapping at 80 characters to make reading easier. However, this causes problems with tracking changes with in version control. For example, ...
3
votes
2answers
72 views

Navigate between soft lines in Vim

I have the following one-line text input that's broken into several soft line wraps. When I press j, I'd go straight to the next hard line, line 2. How do I navigate among soft line wraps?
3
votes
1answer
2k views

How do you enable word wrap in vim when printing

I wanted to print a simple text document and make sure words wrap on word boundaries. I tried both set linebreak and set wrap but when printing, it just breaks on the right column in the ...
3
votes
4answers
2k views

How do you get vim to display wrapped lines without inserting newlines?

I'm getting back in touch with my inner (g)vim due to an unscheduled MacBook mother(board) of a meltdown (my emergency backup Linux box won't run TextMate). All told I'm happy with vim's efficiency ...
2
votes
3answers
488 views

Enablind and Disabling word wrap automatically on different file extensions on Vim

I usually have to read .txt files with long lines, and at the same time edit some source file, and I like to see word wrap on the .txt files, and not in the ones that aren't. Of course I can :set ...
1
vote
1answer
36 views

Context sensitive word wrap in vi/vim

How can I can specific word wrapping for specific tags. For example, in LaTex I want word wrapping for my paragraphs but not for my figure commands (they are always very long and run off the screen). ...