gpt4 book ai didi

vim - 打开文件类型还是关闭文件类型?

转载 作者:行者123 更新时间:2023-12-04 05:34:23 25 4
gpt4 key购买 nike

我使用 Pathogen插件 gvim .配置时,我在 vimrc 中设置了以下内容文件:

call pathogen#infect()
call pathogen#helptags()
call pathogen#runtime_append_all_bundles()

filetype on "force reloading *after* pathogen loaded

现在我在关注 this tutorial on Youtube Martin Brochhaus 将 Vim 设置为对 Python 编码有用,他提出以下建议:
filetype off
filetype plugin indent on
syntax on

所以目前我有 filetype on病原体,但他建议 filetype off .这行代码有什么作用,我应该如何配置 vimrc所以 Pathogen 和 Python 都很开心?

最佳答案

call pathogen#runtime_append_all_bundles()

根本不需要:该功能已被弃用,无论如何都没有用。

如果您真的需要确保安全,这就是您 ~/.vimrc 顶部应该有的东西。 :
" turn filetype detection off and, even if it's not strictly
" necessary, disable loading of indent scripts and filetype plugins
filetype off
filetype plugin indent off

" pathogen runntime injection and help indexing
call pathogen#infect()
call pathogen#helptags()

" turn filetype detection, indent scripts and filetype plugins on
" and syntax highlighting too
filetype plugin indent on
syntax on

但是,我已经有以下很长一段时间没有任何明显的问题:
call pathogen#infect()
call pathogen#helptags()

filetype plugin indent on
syntax on

关于vim - 打开文件类型还是关闭文件类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17630393/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com