我似乎不能在Vim中正确插入JavaScript。考虑以下:
原文链接:https://www.f2er.com/bash/392029.html$(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似乎坚持自动缩进在第二种情况下显示的闭合支具。它做同样,如果我重新缩进整个文件。我如何让它自动缩进使用更标准的JS缩进风格在第一种情况下看到?