Hello, can anyone confirm the following with regard to Ruby formatting? I don't know if they're bugs or intended
behavior.
- Ruby syntax has colors applied, so that seems to be working fine.
- When I insert a line below or return after (depending on mode) any line, such as 'class X' or 'def x,' the spacing
is set directly below the first character of the preceding line. In other words, it's not indenting fully. Is that how
it should be working?
So:
class X
def xyz
<- cursor goes right here
Should be:
class X
def xyz
<-cursor should go here
- When I type 'def xyz,' no 'end' is created. Should a closing 'end' be created automatically?
This is with 7.2 and a default configuration on Snow Leopard. I also tried installing the latest version from Github
to ~/.vim but that didn't change anything (after reloading).
Is there something I need to enable? I read all the instructions but didn't see anything else mentioned. |