在 emacs py 模式下使用 Tab 键注释?
我正在使用 python-mode.el,当我尝试缩进注释时,它总是想将它们一直放在左边。我希望它们缩进与代码的其余部分一致。有没有一种简单的方法可以实现这一目标?
I'm using python-mode.el, and when I try to indent comments, it always wants to put them all the way to the left. I want them indented in line with the rest of the code. Is there an easy way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最近的 python-mode.el 带有一个可定制的变量
py 缩进注释
当 t 时,注释行缩进。
从那里得到它
http://launchpad.net/python-mode
Recent python-mode.el comes with a customizable variable
py-indent-comments
When t, comment lines are indented.
get it from
http://launchpad.net/python-mode
还运行 python-mode.el ,当我选择注释时,它会循环显示缩进级别。您使用什么版本的 emacs?
如果 # 后面紧跟一个非空格,编辑获取您所描述的行为。我总是在后面加一个空格,但这对我来说听起来像是一个错误。我会在 python-mode.el 列表上询问。
Also running python-mode.el and when I tab a comment it cycles through the indentation levels. What version of emacs are you using?
edit getting the behavior you describe if there is a non-space immediately following the #. I always put a space after, but it sounds like a bug to me. I'd ask on the python-mode.el list.