June 2017
Beginner
1296 pages
69h 23m
English
Section 25.3.10 demonstrated JShell Edit Pad for editing code snippets. This tool provides only simple editing functionality. Many programmers prefer to use more powerful text editors. Using JShell’s /set editor command, you can specify your preferred text editor. For example, we have a text editor named EditPlus, located on our Windows system at
C:\Program Files\EditPlus\editplus.exe
The JShell command
jshell> /set editor C:\Program Files\EditPlus\editplus.exe
| Editor set to: C:\Program Files\EditPlus\editplus.exe
jshell>
sets EditPlus as the snippet editor for the current JShell session. The /set editor command’s argument is operating-system specific. For example, on Ubuntu Linux, you can use the built-in ...
Read now
Unlock full access