VIM自动缩进LaTeX文件不好

前端之家收集整理的这篇文章主要介绍了VIM自动缩进LaTeX文件不好前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想缩进gg = G一些LaTeX文件.但我得到一个不好的缩进.
\title{                                                                         
\rule{\textwidth}{1pt}\\[0.5em] \huge                                           
\textsc{My headline           
\rule{\textwidth}{1pt}}                                                         
}

我得到的

\title{
    \rule{\textwidth}{1pt}\\[0.5em] \huge
        \textsc{My headline
            \rule{\textwidth}{1pt}}
}

我想要的(或类似的):

\title{
    \rule{\textwidth}{1pt}\\[0.5em] \huge
    \textsc{My headline
    \rule{\textwidth}{1pt}}
}

这是正常吗?错误配置文件?旗?附加元件?有人可以帮忙吗?谢谢!

即使在尝试了很多东西之后,我一直对VIM有不好的缩进.如果它有助于我把它关闭和缩进手册.有autoindent,smartindent,不知道是否有任何其他的“怪胎”缩进类型设置,如果你想试验组合的关闭

http://vim.wikia.com/wiki/How_to_stop_auto_indenting

也可能尝试:设置粘贴可能是您需要的.

http://ayaz.wordpress.com/2008/06/21/paste-mode-pasting-text-and-indenting-it-in-vim/

原文链接:https://www.f2er.com/bash/383922.html

猜你在找的Bash相关文章