2

vim 是否可以尝试自动确定文件的制表符类型(制表符或空格)并将制表符属性设置为自动匹配?如果没有,是否有插件可以做到这一点?

我正在处理一个庞大的、杂乱无章的代码库,让 vim 尝试对每个文件执行此操作会很好。

4

2 回答 2

4

我认为这个插件http://www.vim.org/scripts/script.php?script_id=1171正是你想要的。

于 2012-09-25T16:39:34.630 回答
2

I have written the IndentConsistencyCop plugin for this detection (and to alert me to files with a mix of styles). It provides an :IndentConsistencyCop command; the check can be done automatically when a buffer is opened via the IndentConsistencyCopAutoCmds extension.

The plugin page also has links to alternatives.

于 2012-09-25T16:51:59.780 回答