退格键,如果从光标到行首的字符是制表符/空格,则返回一级缩进
我正在使用 Vim 进行 Python 开发。有时,在 if 子句中的表达式之后:(假设 |
是光标)。
if test:
pass
|
...我按 Enter 键,想要转到 if
标识级别。
我知道我可以返回到命令模式,只需按 <
,但我想知道,当 Vim 知道光标后面的所有字符都是制表符或空格时,是否可以返回一个按下退格键时的缩进级别(或shiftwidth值)。
I'm using Vim for Python development. Sometimes, after an expression in an if clause: (suppose |
is cursor).
if test:
pass
|
...I press enter, and want to go to the if
identation level.
I know I can go back to command mode and just press <
, but I would like to know if it's possble to, when Vim knows all characters behind the cursor are tabs os spaces, to go back one indent level when backspace is pressed (or shiftwidth value).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
softtabstop
设置为shiftwidth
,并打开expandtab
:现在,当你按 Backspace 时,Vim 会自动删除适当数量的空格可向后移动一级缩进。
有多种设置可以控制制表符、空格和缩进的行为,并且它们可以以不明显的方式进行交互。我推荐这个 Vimcast 剧集,以获得非常清晰的概述:
http://vimcasts.org/episodes/tabs -和-空格/
Set
softtabstop
equal toshiftwidth
, and turn onexpandtab
:Now when you press Backspace, Vim will automatically delete the proper number of spaces to move back one indentation level.
There are several settings that control the behavior of tabs, spaces, and indentation, and they can interact in non-obvious ways. I recommend this Vimcast episode for a very clear overview:
http://vimcasts.org/episodes/tabs-and-spaces/