Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

7 Answers

up vote 62 down vote accepted

Use JavaScript Indent: Javascript indenter (HTML indent is included) by Preston Koprivica. Thanks for the heads-up from oligofren - give him an up-vote.

share|improve this answer
I was just suggesting in comment to your reply that maybe the vim syntax file might be missing. :) – m42 Mar 6 '09 at 20:57
i've been wondering why javascript indentation is all wonky, thanks a lot! – FurtiveFelon Nov 17 '09 at 22:35
I jave indendation-issues with the provided OOP javascript indentation, in particular with jQuery-code. See the answer of oligofren for a working indentation plugin. – markus Feb 28 '11 at 21:04
is it possible to set the indentation to 2 space? – disappearedng Mar 13 '11 at 5:02
1  
Jesus, this plugin blows the big one. Incorrectly indents everything. I'll comment again when I find a better one. – Andy Ray Apr 30 '12 at 21:16
show 2 more comments

The most comprehensive and bug-free Javascript indentation script is the one by Preston Koprivica. The so called OOP script that is in the proposed answer has severe bugs, and does not indent code properly that has square brackets.

share|improve this answer
2  
This one is the only one really working for my js-files (consisting mainly of jQuery code - multiple braces and curly braces often on the same line) – markus Feb 28 '11 at 21:05
1  
Note, I updated the accepted answer some time ago to link to Preston Koprivica's script. Thanks to oligofren for the pointer. – Charles Roper Nov 8 '12 at 14:49

The scripts mentioned above do not format the closure-syntax often used in jQuery correctly:

$(function() {
  // only one level of indentation, not two
});

This script works better for me: http://www.vim.org/scripts/script.php?script_id=2765

share|improve this answer
3  
Thanks for this! As a side note, make sure get the version from github, which is much, much newer. – DMan Aug 24 '11 at 4:55
1  
This works much better than the higher voted one for me. Thanks. – Ekin Koc Jan 9 at 21:19
Sadly, this indentation script fails on simple cases like putting the opening brace of a block on a newline, and doesn't respect the users tab expansion settings, for example indenting with 3 spaces when I have it configured to expand to 4. – aphax Apr 23 at 16:21

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
share|improve this answer
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 '09 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 – m42 Mar 6 '09 at 20:55
Without some of these settings, the Koprivica script won't work. – John M. P. Knox Jul 26 '11 at 18:44

I had this same issue. This is the best of all Javascript indentation scripts:

http://www.vim.org/scripts/script.php?script_id=1840

It requires the IndentAnything plugin

http://www.vim.org/scripts/script.php?script_id=1839

As an added bonus, I wrote this indent script that will make Javascript blocks quite pretty. It uses the default html indenter by default (and the IndentAnything one when within a Javascript block)

http://gist.github.com/371902

share|improve this answer
looks like this does most things "wrong", like adding two levels of indent after (function() { . Also loses extreme points for not having a github/bibucket repo. – Andy Ray Apr 30 '12 at 22:20

I think that's what

set cindent

is for.

share|improve this answer
Thanks, but I already tried that. It made no difference whatsoever. – Charles Roper Mar 6 '09 at 20:47

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.

share|improve this answer
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 '09 at 15:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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