是否可以通过键盘快捷键自定义注释的插入方式?

时间:2014-10-20 06:44:52

标签: python pycharm

使用键盘快捷键注释一行时,是否可以更改PyCharm添加哈希#的方式? (默认 CTRL + /

我希望#位于第1列,而不是缩进级别。此外,光标在键盘快捷键后面向下移动,我宁愿它保持在同一条线上。

目前:

def foo():
    my_uncommented_line
    # commented_with_keyboard_shortcut
    var = "and now the cursor is at the start of this line"

我想要的是什么:

def foo():
    my_uncommented_line
#    commented_with_keyboard_shortcut
    var = "cursor stays on the previous line"

我目前正在搜索JetBrains插件回购中的内容,但是到目前为止还没有运气。

我知道这不符合PEP8。我希望能够做出这一改变,以便与项目的其他部分保持一致:

Some other good reasons to ignore a particular guideline:

 2. To be consistent with surrounding code that also breaks [the guideline].

1 个答案:

答案 0 :(得分:0)

你能做的最多就是改变风格:

enter image description here