英文:
How to exit "go run" in the GoSublime's command-shell?
问题
当我运行go run
命令时,命令行不会停止,我必须从任务管理器中关闭我的Web服务器。是否可以从Sublime Text取消它?
英文:
When i do go run
, the command-shell doesn't halt and i have to close my web server from the task manager. Is it possible to cancel it from sublime text?
答案1
得分: 6
是的。按下Ctrl+B键进入构建控制台,然后输入tskill
。
这将弹出一个对话框,显示可以终止的正在运行的进程。
英文:
yup. press ctrl+b to go to the build console and type tskill
.
This will prompt a dialog with running processes you can kill.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论