Scinotes: Embedded Scilab text editor
scinotes()
scinotes(file)
scinotes([file1, file2])
scinotes(file, line_number)
scinotes(file, line_number, macro_name)
scinotes([file1, file2], [line_number1, line_number2])
scinotes(file, 'readonly')
scinotes([file1, file2], 'readonly')
:file a string, the file to be opened. : :[file1, file2] a matrix of string, files to be opened. :
:
:
:
Scinotes is an embedded Scilab text editor.
It can be started with a fresh text buffer pressing the “Editor” button on top of the main Scilab window, or from Scilab command line with the instruction editor(), or it can open specific files if invoked with any of the calling sequences above (whithout any parameters, it opens editor with a blank file).
The same invocation adds further files to an already opened Editor.
With the option ‘readonly’, files are opened in read-only mode so they cannot be modified.
Keyboard shortcuts are defined for most possible editing actions and reported by the menu entries.
SciNotes can be started in the following ways :
By the menu Applications. Choose Applications => Editor
From the command line:
- scinotes()
- scinotes(file)
- scinotes([file1, file2])
- scinotes(file, line_number)
- scinotes([file1, file2], [line_number1, line_number2])
:
// editor without parameters
scinotes();
// editor with a file name
scinotes('SCI/modules/time/macros/datenum.sci');
// editor with a matrix of files name
scinotes(['SCI/modules/time/macros/datenum.sci','SCI/modules/time/macros/datevec.sci']);
// editor with a file name and the line number to highlight
scinotes('SCI/modules/time/macros/datenum.sci', 5);
// editor with a file name and the line number to highlight
scinotes('SCI/modules/time/macros/datenum.sci', 8, 'datenum');
// editor with a matrix of files name and the corresponding matrix of lines to highlight
// the files name matrix and the lines to highlight matrix should have the same size
scinotes(['SCI/modules/time/macros/datenum.sci','SCI/modules/time/macros/datevec.sci'], [5,10]);