Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一旦我用 Scite 编译,我的命令提示符就不会出现。如何设置它以便我可以使用 Scite 从我的程序中接受命令提示符的输入和输出?
在 scite 属性文件中编辑如下:
改变
command.go.*.c=$(FileName)
至
command.go.*.c=start $(FileName)
按 go 在新的 cmd 窗口中打开 tatget 文件,现在可以交互 现在您可以输入
如果您使用不同的语言,请将 *.c替换为对应的语言 ,并将start放在命令之前。