atom 运行代码的快捷键为:windows 和 linux:Control + Entermacos:Command + Enter按下快捷键将运行选定的代码块,如果文件未保存,Atom 会提示保存。代码会在终端窗口中执行,用户可以在查看 > 切换终端命令中打开该窗口。
Atom 运行代码的按键
快捷键:
Control + Enter (Windows, Linux)
Command + Enter (macos)
详细说明:
- 按下快捷键将运行当前文件中选定的代码块。
- 如果文件未保存,Atom 会提示保存文件。
- 代码将在终端窗口中运行,该窗口可以通过 View > Toggle Terminal 命令打开。
- 终端窗口显示代码的输出和任何错误消息。
其他选项:
-
运行选定文本:
- 选择要运行的代码文本。
- 按快捷键或右键单击并选择 “Run Selection”。
-
运行整个文件:
- 按 Control + Command + M (Windows, Linux) 或 Command + Option + B (macOS)。
-
更改运行代码的终端类型:
-
编辑 “settings.json” 文件并添加以下代码:
"terminal.integrated.shell.fontFamily": "your_font_family", "terminal.integrated.shellArgs.linux": ["-c"], "terminal.integrated.shellArgs.windows": ["cmd.exe"],
- 更改 “your_font_family” 以匹配您首选的字体。
- 更改 “terminal.integrated.shellArgs.linux” 和 “terminal.integrated.shellArgs.windows” 以指定您喜欢的终端类型。
-
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END