gpt4 book ai didi

python - 如何修复 vim 以正确缩进包含 Python 注释行的折叠?

转载 作者:太空狗 更新时间:2023-10-29 17:58:55 25 4
gpt4 key购买 nike

我将 vim 的折叠方法设置为缩进,这在编写 Python 时效果很好,除非我有注释行。例如,如果我有这段代码:

def myFunction():
# here is my comment
myString = "hello"
myInt = 2

如果我将光标放在注释行上并键入“za”,我会收到一条错误消息“E490:找不到折叠”。如果我将光标放在以“myString =”开头的行上,我将像这样折叠:

def myFunction():
# here is my comment
+--- 2 lines: myString = "hello" -------------------------

在这两种情况下,我都希望弃牌:

def myFunction():
+--- 3 lines: # here is my comment -------------------------

基本上,注释行应该像其他任何东西一样对待。我还没有通过搜索网络得出答案。有任何想法吗?谢谢!

最佳答案

您必须将 foldignore 设置为空。

:set foldignore=

来自 :help foldignore:

'foldignore' 'fdi'  string (default: "#")

Used only when 'foldmethod' is "indent". Lines starting with
characters in 'foldignore' will get their fold level from surrounding
lines. White space is skipped before checking for this character.
The default "#" works well for C programs. See |fold-indent|.

关于python - 如何修复 vim 以正确缩进包含 Python 注释行的折叠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8993455/

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