如何使用 SublimeREPL 运行 选择 Python 代码

How to run selected Python codes using SublimeREPL

我已经设置了 sublimeREPL,可以 运行 使用 Command + B 一个 .py 文件没有问题。但是,我想知道如何 运行 只选择代码行而不是整个文件。

https://github.com/wuub/SublimeREPL上说SublimeREPL支持"Quickly run selected script."但是怎么实现呢?谢谢!

在他们的 GitHub 存储库中安装 SublimeREPL 跟随 guide

创建或打开您的 python 脚本。然后,使用命令面板,输入 SublimeREPL: Python 和 select 它。它应该打开一个 Python REPL。

他们在 documentation 列出了 python 文件的 运行 部分的快捷方式,但我也会在这里列出它们:

  • ctrl+,, s -> 在 REPL 中计算 selection
  • ctrl+,, f -> 在 REPL file
  • 中计算
  • ctrl+,,l(L) -> 在 REPL 中计算
  • ctrl+,, b -> 在 REPL block of code[=63] 中计算=]

注:ctrl+,,s表示:

  1. Ctrl逗号
  2. 全部释放
  3. s.

在下面的示例中,我 运行 3 print 语句通过 selecting 它们并按 ctrl+,, s快捷方式: