vote up 3 vote down star
2

I can't seem to get inline Javascript indenting properly in Vim. Consider the following:

  $(document).ready(function() {

  // Closing brace correctly indented
    $("input").focus(function() {
      $(this).closest("li").addClass("cur-focus");
    }); // <-- I had to manually unindent this

  // Closing brace incorrectly indented
    $("input").blur(function() {
      $(this).closest("li").removeClass("cur-focus");
      }); // <-- This is what it does by default. Argh!

  });

Vim seems to insist on automatically indenting the closing brace shown in the second case there. It does the same if I re-indent the whole file. How do I get it to automatically indent using the more standard JS indenting style seen in the first case?

flag

4 Answers

vote up 0 vote down

maybe some combination of these settings should be in your VIMRC file.

syntax on 
set syn=auto 
set showmatch 
filetype on 
filetype plugin on 
filetype indent on 
set tabstop=4 
set softtabstop=4 
set shiftwidth=4 
set expandtab
link|flag
Many thanks for the suggestions, but I've already got most of these set and they don't seem to help. – Charles Roper Mar 6 at 20:48
I notice with vim sometimes matching braces shift one tab stop until I skip past that line in the code. I thought that "filetype plugin on & filetype indent on" were supposed to drive that. do you have a syntax file for javascript? (I'm not working with JS, so don't know if it's needed or not – 42 Mar 6 at 20:55
vote up 0 vote down

I think that's what

set cindent

is for.

link|flag
Thanks, but I already tried that. It made no difference whatsoever. – Charles Roper Mar 6 at 20:47
vote up 5 vote down check

I found the answer. The following indent file fixed the problem with inline Javascript:

html improved indentation : A better indentation for HTML and embedded javascript

And this one fixed the problem with a pure Javascript file:

OOP javascript indentation : This indentation script for OOP javascript (especially for EXTJS)

link|flag
I was just suggesting in comment to your reply that maybe the vim syntax file might be missing. :) – 42 Mar 6 at 20:57
i've been wondering why javascript indentation is all wonky, thanks a lot! – FurtiveFelon Nov 17 at 22:35
vote up 0 vote down

Assuming the syntax file has good indenting for java script, visually highlight the block and press =. This works for java so I would expect it to do something half decent for java script. The results probably also depend on the settings of tabstop, expandtab and maybe shiftwidth.

gq is useful too, it formats lines rather than indents them.

link|flag
Thanks for that. The combo I usually use for indenting a whole file is gg=G. My problem was that when I did this, JS didn't indent correctly. My own answer above solved the problem. – Charles Roper Mar 10 at 15:16

Your Answer

Get an OpenID
or

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