防止vim自动展开折叠
我在 Python 代码中使用 foldmethod=marker 和 #{{{ #}}} 标记。
输入 #{{{ 后,vim 会自动展开光标下方的所有折叠。
是否可以将其关闭?
I'm using foldmethod=marker and #{{{ #}}} markers in Python code.
After typing #{{{ vim automatically expands all folds below the cursor.
Is it possible to turn this off?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试从“foldopen”选项中删除块。
或者也许 Foldclose=all 选项...
Try removing block from the "foldopen" option.
Or maybe the foldclose=all option...
尝试添加
# {{{
的匹配项,例如# {{{1
>,然后添加# }}}1
Try adding a match for the
# {{{
like# {{{1
and then a# }}}1