Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2024.0.0 - English


edit

edits a given Scilab function or file

Syntax

edit functionname
edit(functionname, linenumber)
edit functionname linenumber

Arguments

functionname

character string

linenumber

positive integer (of type 1 or 10)

Description

If functionname is the name of a defined scilab function, edit(functionname) tries to open the associated source file functionname.sci.

If functionname is not found as a defined Scilab function but matches naming rules of Scilab functions, edit(functionname) creates the file functionname.sci file in the TMPDIR directory.

If functionname is a file path or an expression not matching Scilab functions naming rules, edit(functionname) opens the file with file name equal to functionname.

If linenumber is given, the file is opened at this line inside the function/endfunction block defining the macro named as the file itself. If the definition of the function functionname is not found in the file, the file is opened at the absolute line number linenumber.

Examples

// Opens editor with text of this function
edit edit

// Opens editor for a new function, creating the file myfun.sci in TMPDIR
edit myfunction

// Opens or creates the file foo.sce in the current working directory
edit foo.sce

// Opens the file scilab.ini in the SCIHOME directory
edit(SCIHOME+"/scilab.ini")

// Opens the file test_run.sci in which test_run() is defined,
// at line 123 inside the test_run() function block:
edit('test_run', 123)

// Same thing with an inline syntax (line number as text):
edit test_run 123

See also

  • editor — Call the text editor as defined in the preferences
  • scinotes — Scinotes: Embedded Scilab text editor
  • manedit — editing a manual item
  • names — Naming rules for variables and functions
  • editvar — Scilab variable editor
  • ged — Scilab Graphic Editor

History

VersionDescription
5.3.1 New linenumber input option.
6.1.0 linenumber can now be of type text as "23".
Report an issue
<< Script editor Script editor edit_error >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Oct 24 14:30:10 CEST 2023