6

是否可以在 Spacemacs 中启动 shell,就像我的主窗口旁边的一个单独的窗口一样?

我想将它用于各种任务,例如运行测试、工具和应用程序等

我主要计划将它用于 Python 编码,因此也非常欢迎任何特定于 Python 的提示。

4

1 回答 1

6

我认为您正在寻找的部分内容可以在Shell 层中找到,这将使您可以在终端模拟器中执行您通常会执行的任何操作,您可以从此处启动 iPython 等。

安装层后,您可以使用以下键绑定

|-------------+------------------------------------------------------|
| Key binding | Description                                          |
|-------------+------------------------------------------------------|
| SPC '​       | Open, close or go to the default shell               |
| SPC "​       | Open external terminal emulator in current directory |
| SPC p '​     | Open a shell in the project's root                   |
| SPC p "​     | Open external terminal emulator in project root      |
| TAB         | browse completion with `helm`                        |
| SPC m H     | browse history with helm (works in eshell and shell) |
| C-j         | next item in history                                 |
| C-k         | previous item in history                             |
|-------------+------------------------------------------------------|

另一部分在支持生成 python 解释器的Python 层中,这可以由SPC m s i.

如果您喜欢 Jupyter Notebook(以前称为 iPython notebook),那么也有一个层(ipython-notebook),一旦安装,您可以使用SPC a i n.

于 2016-12-28T18:24:05.093 回答