editerm
Features
Requirements
Nothing
Extension Settings
- 命令
editerm.runlinecode , 可以根据自己的喜好绑定到相关快捷键,因为我喜欢使用vi-mode ,所以我的绑定如下
//settings.json
"vim.normalModeKeyBindings": [
{
"before": ["e", "e"],
"commands": ["editerm.runlinecode"]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": ["e", "e"],
"commands": ["editerm.runlinecode"]
}
],
Known Issues
todo
- [x] 支持多行选择执行
- [ ] 支持从terminal焦点转移至编辑器: 暂时先用
f2 绑定到命令workbench.action.focusActiveEditorGroup 来实现
- [ ] 支持环境监测与自动初始化
- [ ] 支持将二进制文件转换成hex字符进行双向传输
- [x] 通过上一行的comment禁止切换当前使用的terminal
Release Notes
1.0.0
- 支持执行当前行
- 支持通过标志行和文件名选定terminal
Following extension guidelines
Ensure that you've read through the extensions guidelines and follow the best practices for creating your extension.
Enjoy!
| |