setnamecompletion.bsh

来自「用java 编写的源码开放的文本编辑器。有很多有用的特性」· BSH 代码 · 共 21 行

BSH
21
字号
/**	Allow users to turn off name completion.	<p>	Turn name completion in the GUI console on or off.	Name competion is on by default.  Explicitly setting it to true however can	be used to prompt bsh to read the classpath and provide immediate feedback.	(Otherwise this may happen behind the scenes the first time name completion	is attempted).  Setting it to false will disable name completion.*/bsh.help.setNameCompletion= "usage: setNameCompletion( boolean )";/***/void setNameCompletion( boolean bool ) {	if ( bool == false )		if ( bsh.console != void )			bsh.console.setNameCompletion( null );}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?