我有一点JavaScript …
原文链接:https://www.f2er.com/bash/386814.html15 $('.ajax_edit_address').each(function() { 16 $(this).ajaxForm({ 17 target: $(this).parents('table.address').find('tr.address_header').children(':first'),18 success: function(response) { 19 $('input,select,textarea','.ajax_edit_address').removeClass('updating'); 20 } 21 }); 22 });
它的格式是我喜欢的方式.但是让我们说刚刚打完了一些东西,我想整理一下.所以我运行Vim代码格式化程序…
=7j
结果是…
15 $('.ajax_edit_address').each(function() { 16 $(this).ajaxForm({ 17 target: $(this).parents('table.address').find('tr.address_header').children(':first'),18 success: function(response) { 19 $('input,'.ajax_edit_address').removeClass('updating'); 20 } 21 }); 22 });
这是我认为是我的.vimrc的相关部分…
:set cindent shiftwidth=2 " indent depends on filetype :filetype indent on :filetype plugin on
有没有其他需要安装或配置来格式化JS代码?