如何修复Vim中不正确的内联JavaScript缩进?

前端之家收集整理的这篇文章主要介绍了如何修复Vim中不正确的内联JavaScript缩进?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我似乎不能在Vim中正确插入JavaScript。考虑以下:
$(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缩进风格在第一种情况下看到?

最全面和无错误的JavaScript缩进脚本是 the one by Preston Koprivica.在所提出的答案中所谓的OOP脚本有严重的错误,并没有缩进代码正确的方括号。
原文链接:https://www.f2er.com/bash/392029.html

猜你在找的Bash相关文章