system: ubuntu 14.04.2
I use vim7.4 to write python code, sometimes I want to insert a '#' (comment), then vim takes this '#' to top of line. Maybe I don't explain clearly. example: code:
if 'test' == 'abc':
print 'something'
I want to insert a '#' in second line.Then this happens:
if 'test' == 'abc':
# print 'something'
this happens automatically.
but what I want to do just like this:
if 'test' == 'abc':
# print 'something'