Although I turn on word wrapping functionality, VIM cuts in the middle
of a word.
----------- appreci
ation
How can I prevent that ? I want the whole word to be moved to the next
line....
Thanks
Check out the 'linebreak' and 'breakat' settings.
:set linebreak
For most things, the default 'breakat' should be fine, but you
can tweak the behavior if needed.
:help 'linebreak'
:help 'breakat'
-tim
See ':help linebreak' and ':help breakat'.
The following tip is a bit messy but the ToggleWrap function at
the top works nicely:
http://vim.wikia.com/wiki/Move_cursor_by_display_lines_when_wrapping
John