本文主要是介绍HBuilderX内置终端无法使用不能输入,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
找到HBuilderX的目录打开plugins\builtincef3terminal\script找到main.js用记事本或其他什么打开他
把这部分代码替换成这个再重启hbuilderX就可以了
if(isWin){shell = 'C:/Windows/System32/WindowsPowerShell/v1.0/powershell.exe';var osRelease = os.release();var dotIndex = osRelease.indexOf('.');if(dotIndex>0){var fv = osRelease.substring(0,dotIndex);if(fv>6){shell = 'C:/Windows/System32/WindowsPowerShell/v1.0/powershell.exe';}else{shell = 'C:/Windows/System32/WindowsPowerShell/v1.0/powershell.exe';var ov = osRelease.substring(dotIndex);dotIndex = ov.indexOf('.');if(dotIndex>0){var sv = ov.substring(0,dotIndex);if(sv>1){shell = 'C:/Windows/System32/WindowsPowerShell/v1.0/powershell.exe';}}}}
}else{shell = 'bash';
}
这篇关于HBuilderX内置终端无法使用不能输入的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!