ilgFindParenthesis
ilgFindParenthesis(x_columnx_row[?levelS_level] [?directionS_direction] [?tabw_tab] ) =>l_coord/nil
Description
Returns the closest parenthesis in a file currently open in the SKILL IDE editor.
Arguments
Value Returned
Examples
If the first row in SKILL IDE tab is: "a ( b ((c)) ) d"
ilgFindParenthesis(1 1)
=> nil
ilgFindParenthesis(1 1 ?level 'inner)
=> ((3 1) (9 1))
ilgFindParenthesis(4 1 ?level 'outer)
=> ((3 1) (9 1))
ilgFindParenthesis(10 1 ?level 'inner ?direction 'backward)
=> ((3 1) (9 1))
Related Topics
Return to top