up vote 4 down vote favorite
5
share [g+] share [fb]

I'm currently using Vim as a lightweight IDE. I have NERDTree, bufexplorer, supertab, and ctags plugins which do almost everything I want. Only big thing missing for me is auto code formatting.

I'm working with some messy PHP code which has inconsistent indenting and code formatting, ideally I could highlight the code I want formatted (whole files would be fine too) and run a command to tidy it.

Does anybody have a nice solution for this working in Vim?

link|improve this question

I like Wesley Mason's idea using "shift-v" followed by "=". I record the key sequence of "shift-v" and "=" into a macro. Then I call the macro as many times as I want to format multiple lines of code. – NorthStar Oct 2 '11 at 5:21
feedback

3 Answers

up vote 20 down vote accepted

Quick way to fix PHP indentation in vim is to visually select the lines you want to work with using shift-v, and then press equals (=) to trigger auto-formatting.

As for other formatting issues you're probably looking at employing some regex search and replaces, such as :%s/^M/\r/g (that's ctrl-V ctrl-m, not caret-M) to fix line endings

link|improve this answer
1  
I can't believe I didn't know about equals auto-formatting years ago, that's really useful. For the formatting issues I could build some custom regex's, I guess I was hoping someone had already done (and tested) it. – gacrux May 13 '09 at 13:39
3  
Protip: ggvG= will select every line in the file and autoformat – Whaledawg May 13 '09 at 14:06
10  
Whaledawg. you can even just gg=G and save a character. Its worth remembering you can action-motion most commands in vim – michael May 13 '09 at 23:13
Love the shift-v + = shortcut. This is going to save me some headaches. Thanks a lot. How do I give more votes to you :) – recluze Apr 29 '11 at 11:49
feedback

Enter command mode in vim and then type

1GVG=
link|improve this answer
Pretty command. What does it do? – Phoenix Nov 14 '11 at 17:03
1G - goes to first line; V - switches to visual mode; G - goes to end of file; = - auto format selected code; – wormhit Nov 17 '11 at 8:19
feedback

The vim website is not the easiest to navigate, but there is a wealth of chewy nougat center there.

For instance I found this php indenting script there. Give it a try.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.