3

我想仅在单个函数的代码段之间的空白行上保留空格字符。原因是当剪切/粘贴到解释器中时,如果那里没有空格(说意外缩进),它将中断。

所以我希望intellij不要去掉那个空格字符。但我找不到防止多余空格删除的设置。

这是用例:

def myfunc():
  print "something"

  def internal_Func_that_I_want_separated_by_newline():
    print "how to have a line above this one that includes a single space?"

  def anotherfunc():
    print "foobar"

  foobar()
  internal_Func_that_I_want_separated_by_newline()

谢谢

4

1 回答 1

5

您需要设置Editor| Strip trailing spaces on save。这是该选项的屏幕截图

于 2013-06-01T04:42:28.273 回答