Function
val addCommand: (string *string) -> unit
addCommand (name, command-line) -> unit
()
Creates a custom editor by associating the editor name with a command-line invocation string command-line.
The command-line string may use the following codes:
%fA filename.
%l and %slStarting line number.
%c and %scStarting character number.
%elEnding line number.
%ecEnding character number.
Use %% for the literal %.
The Windows Notepad editor could be defined by:
Shell.Editor.Custom.addCommand("Notepad",
"Notepad %f");