Workbench User Guide : 13. Writing Scripts and Procedures : How You Can Use Templates for II_WINDOWEDIT and II_WINDOWVIEW : For Windows
 
Share this page                  
For Windows
The valid specifiers for Windows platforms are:
Specifier
Description
%e
Editor command
%t
Window title
%l
Line number (used when errors occur)
%f
File name (required)
Note:  All parameters except for the file name are optional.
For example, assume that your editor is “smartedt” and the command line to run the editor is the following:
smartedt /startline:100 /title:"xxx" filename
You would define the template for II_WINDOWEDIT and II_WINDOWVIEW as follows:
set II_WINDOWEDIT=smartedt /startline:%l /title:%t %f
set II_WINDOWVIEW=smartedt /startline:%l /title:%t %f
OpenROAD substitutes the specifiers %l, %t, and %f with the actual runtime values.