Shark Wang wrote:
Hi,
I was agonized by GVim 7.0, the editor always auto changed my cursor
to next line, when I typed
with long line ( less than the wrap margin ) or end tag element, such
as "</table>".
the following is my vimrc, you could see that I had disabled autoindent :
=================================================
"***** display *****
colo darkblue
syntax on
set gfn=Bitstream\ Vera\ Sans\ Mono:h11
set anti
set nonu
"***** wrap and tab *****
set wm=78
set ts=2
set sw=2
set et
"***** indent *****
set noai
set nosi
set nocin
set ic
What should I do for this issue ? thanks for your help.
In gvim, type
:filetype
If the reply includes "indent:ON", add
filetype indent off
to your vimrc, then restart gvim.
Best regards,
Tony.