|
setup()
Set up the actions that the plugin provides |
source code
|
|
|
GoToLine(data=None)
If data is specified, assume it is a line-number to go to
otherwise prompt using an ugly dialog box |
source code
|
|
|
CommentLines(data=None)
Comment the lines by retrieving the comment character from the
lexer |
source code
|
|
|
UncommentLines(data=None)
Remove commenting from selected lines by retrieving a comment
character from the lexer and determining if the line starts with
it |
source code
|
|
|
ShiftIndentRight(data=None)
Increase indentation by retrieving the indent string from the
lexer |
source code
|
|
|
ShiftIndentLeft(data=None)
Decrease indentation byretrieving the indent string character from
the lexer and determining if the line starts with it |
source code
|
|
|
JoinLines(data=None)
Join the current line with the next one. |
source code
|
|
|
ActionOnSelected(function,
*args)
Calculate the line numbers of each line that is selected and call
function on that line number. |
source code
|
|