ilgFindIdent
ilgFindIdent(x_columnx_row[?tabw_tab] ) =>l_coord/nil
Description
Returns the nearest identifiers from a given opening parenthesis location '(' in the SKILL IDE editor tab.
Arguments
|
The window ID of the SKILL IDE editor window. Default is the current tab window. |
Value Returned
|
List containing two identifier strings, one before the opening parenthesis and the other after it. |
|
Examples
If the first row in SKILL IDE tab is: a ( b ((c)) ) d ( "e" )
ilgFindIdent(1 1)
=> nil
ilgFindIdent(3 1)
=> ("a" "b")
ilgFindIdent(4 1)
=> nil
ilgFindIdent(7 1)
=> ("b" "")
ilgFindIdent(8 1)
=> ("" "c")
ilgFindIdent(17 1)
=> ("d" "\"e\"")
Related Topics
Return to top