com.borland.primetime.editor
Interface EditorActionNames

All Known Implementing Classes:
EditorActions

public interface EditorActionNames

This interface defines the names of all the actions that each editor can use. The actual implementation of these actions can be found in EditorActions.


Field Summary
static java.lang.String backwardAction
          Name of the Action for moving the caret logically backward one position.
static java.lang.String beepAction
          Name of the action to create a beep.
static java.lang.String beginAction
          Name of the Action for moving the caret to the begining of the document.
static java.lang.String beginLineAction
          Name of the Action for moving the caret to the begining of a line.
static java.lang.String beginWordAction
          Name of the Action for moving the caret to the begining of a word.
static java.lang.String bottomOfScreenAction
          Name of the action that moves the cursor to the bottom of the screen.
static java.lang.String clearBookmarksAction
          Name of the action that will clear all bookmarks in the current editor window.
static java.lang.String closingCurlyBraceAction
          Name of the action that will execute special code when the closing curly brace is entered.
static java.lang.String commentLineAction
          Name of the action that makes the current line a line comment, or if this line is already a line comment, it makes it a regular line instead.
static java.lang.String copyAction
          Name of the action to copy the selected region and place the contents into the system clipboard.
static java.lang.String cutAction
          Name of the action to cut the selected region and place the contents into the system clipboard.
static java.lang.String defaultKeyTypedAction
          Name of the action that is executed by default if a key typed event is received and there is no keymap entry.
static java.lang.String deleteBeginLineAction
          Name of the action that will delete from the start of the current line to the cursor.
static java.lang.String deleteBeginWordAction
          Name of the action that will delete from the cursor to the start of the word under the cursor.
static java.lang.String deleteEndLineAction
          Name of the action that will delete from the cursor to the end of the current line.
static java.lang.String deleteLineAction
          Name of the action that will delete the line the cursor is on.
static java.lang.String deleteNextCharAction
          Name of the action to delete the character of content that follows the current caret position.
static java.lang.String deletePrevCharAction
          Name of the action to delete the character of content that precedes the current caret position.
static java.lang.String deleteSelectionAction
          Name of the action that will delete the current selection.
static java.lang.String deleteWordAction
          Name of the action that will delete from the cursor to the end of the word under the cursor.
static java.lang.String downAction
          Name of the Action for moving the caret logically downward one position.
static java.lang.String endAction
          Name of the Action for moving the caret to the end of the document.
static java.lang.String endLineAction
          Name of the Action for moving the caret to the end of a line.
static java.lang.String endWordAction
          Name of the Action for moving the caret to the end of a word.
static java.lang.String forwardAction
          Name of the Action for moving the caret logically forward one position.
static java.lang.String gotoBookmark0Action
          Name of the action that will position the cursor at bookmark # 0
static java.lang.String gotoBookmark1Action
          Name of the action that will position the cursor at bookmark # 1
static java.lang.String gotoBookmark2Action
          Name of the action that will position the cursor at bookmark # 2
static java.lang.String gotoBookmark3Action
          Name of the action that will position the cursor at bookmark # 3
static java.lang.String gotoBookmark4Action
          Name of the action that will position the cursor at bookmark # 4
static java.lang.String gotoBookmark5Action
          Name of the action that will position the cursor at bookmark # 5
static java.lang.String gotoBookmark6Action
          Name of the action that will position the cursor at bookmark # 6
static java.lang.String gotoBookmark7Action
          Name of the action that will position the cursor at bookmark # 7
static java.lang.String gotoBookmark8Action
          Name of the action that will position the cursor at bookmark # 8
static java.lang.String gotoBookmark9Action
          Name of the action that will position the cursor at bookmark # 9
static java.lang.String gotoBookmarkDialogAction
          Name of the action that brings up the goto bookmark dialog.
static java.lang.String gotoLineDialogAction
          Name of the action that brings up a dialog box that accepts a line number.
static java.lang.String incrSearchAction
          Name of the action that will start the incremental search by bringing up a tiny editor box at the top of the screen.
static java.lang.String indentBlockAction
          Name of the action that will indent all lines that are contained in the current selection.
static java.lang.String insertBreakAction
          Name of the action to place a line/paragraph break into the document.
static java.lang.String insertTabAction
          Name of the action to place a tab character into the document.
static java.lang.String lowerCaseAction
          Name of the action that converts the selected text to all lower case.
static java.lang.String lowerCaseWordAction
          Name of the action that will lower case the word currently under the cursor, or if the cursor is between words, it will lower case the previous word.
static java.lang.String matchBraceAction
          Name of the action that will find the matching curly bracket, square bracket, or parenthesis, if the cursor is at a bracket or parenthesis.
static java.lang.String nextBookmarkAction
          Name of the action that will position the cursor at the next bookmark below the current line, with wrap around to the top if no bookmark is found before the end of the file.
static java.lang.String nextWordAction
          Name of the Action for moving the caret to the begining of the next word.
static java.lang.String openLineAction
          Name of the action that will add a line terminator after the cursor, effectively splitting the current line in two.
static java.lang.String outdentBlockAction
          Name of the action that will outdent all lines that are contained in the current selection.
static java.lang.String pageDownAction
          Name of the action to page down vertically.
static java.lang.String pageLeftAction
          Name of the action to page left horizontally.
static java.lang.String pageRightAction
          Name of the action to page right horizontally.
static java.lang.String pageUpAction
          Name of the action to page up vertically.
static java.lang.String pasteAction
          Name of the action to paste the contents of the system clipboard into the selected region, or before the caret if nothing is selected.
static java.lang.String previousBookmarkAction
          Name of the action that will position the cursor at the previous bookmark above the current line, with wrap around to the bottom if no bookmark is found before the beginning of the file.
static java.lang.String previousIndentAction
          Name of the action that moves the caret to the previous indent position.
static java.lang.String previousTabStopAction
          Name of the action that moves the caret to the previous tab stop.
static java.lang.String previousWordAction
          Name of the Action for moving the caret to the begining of the previous word.
static java.lang.String printAction
          Name of the action that executes a print.
static java.lang.String recenterAction
          Name of the action that puts the current in the center of the screen.
static java.lang.String redoAction
          Name of the action that redoes the previous action or group of actions that was undone.
static java.lang.String replaceDialogAction
          Name of the action that will bring up the replace dialog.
static java.lang.String reverseIncrSearchAction
          Name of the action that will start the reverse incremental search by bringing up a tiny editor box at the top of the screen.
static java.lang.String scrollDownAction
          Name of the action that scrolls the screen down one line.
static java.lang.String scrollLeftAction
          Name of the action that scrolls the screen one column to the left.
static java.lang.String scrollRightAction
          Name of the action that scrolls the screen one column to the right.
static java.lang.String scrollUpAction
          Name of the action that scrolls the screen up one line.
static java.lang.String searchAgainAction
          Name of the action that will repeat the previous search.
static java.lang.String searchAgainBackwardAction
          Name of the action that will repeat the previous search, but will always force a backward direction
static java.lang.String searchAgainForwardAction
          Name of the action that will repeat the previous search, but will always force a forward direction
static java.lang.String searchAgainInReverseAction
          Name of the action that will repeat the previous search but in the reverse direction.
static java.lang.String searchDialogAction
          Name of the action that will bring up the search dialog.
static java.lang.String searchSelectedBackwardAction
          Name of the action that will do a backward search using the selected text.
static java.lang.String searchSelectedForwardAction
          Name of the action that will do a forward search using the selected text.
static java.lang.String selectAllAction
          Name of the Action for selecting the entire document
static java.lang.String selectionBackwardAction
          Name of the Action for extending the selection by moving the caret logically backward one position.
static java.lang.String selectionBeginAction
          Name of the Action for moving the caret to the begining of the document, extending the selection.
static java.lang.String selectionBeginLineAction
          Name of the Action for moving the caret to the begining of a line, extending the selection.
static java.lang.String selectionBeginWordAction
          Name of the Action for moving the caret to the begining of a word, extending the selection.
static java.lang.String selectionBottomOfScreenAction
          Name of the action that will position the cursor at the bottom of the screen, extending the selection.
static java.lang.String selectionDownAction
          Name of the Action for moving the caret logically downward one position, extending the selection.
static java.lang.String selectionEndAction
          Name of the Action for moving the caret to the end of the document, extending the selection.
static java.lang.String selectionEndLineAction
          Name of the Action for moving the caret to the end of a line, extending the selection.
static java.lang.String selectionEndWordAction
          Name of the Action for moving the caret to the end of a word, extending the selection.
static java.lang.String selectionForwardAction
          Name of the Action for extending the selection by moving the caret logically forward one position.
static java.lang.String selectionMatchBraceAction
          Name of the Action for selection code from one bracket to the matching bracket.
static java.lang.String selectionNextWordAction
          Name of the Action for moving the selection to the begining of the next word, extending the selection.
static java.lang.String selectionPageDownAction
          Name of the action that will scroll the page down one screen.
static java.lang.String selectionPageUpAction
          Name of the action that will scroll the page up one screen.
static java.lang.String selectionPreviousWordAction
          Name of the Action for moving the selection to the begining of the previous word, extending the selection.
static java.lang.String selectionTopOfScreenAction
          Name of the action that will position the cursor at the top of the screen, extending the selection.
static java.lang.String selectionUpAction
          Name of the Action for moving the caret logically upward one position, extending the selection.
static java.lang.String selectLineAction
          Name of the Action for selecting a line around the caret.
static java.lang.String selectMultiLineAction
          Name of the Action for selecting a line around the caret and entering the LINE_SELECTION mode used in keymaps like Brief and Visual Studio.
static java.lang.String selectWordAction
          Name of the Action for selecting a word around the caret.
static java.lang.String setBookmark0Action
          Name of the action that will set bookmark # 0
static java.lang.String setBookmark1Action
          Name of the action that will set bookmark # 1
static java.lang.String setBookmark2Action
          Name of the action that will set bookmark # 2
static java.lang.String setBookmark3Action
          Name of the action that will set bookmark # 3
static java.lang.String setBookmark4Action
          Name of the action that will set bookmark # 4
static java.lang.String setBookmark5Action
          Name of the action that will set bookmark # 5
static java.lang.String setBookmark6Action
          Name of the action that will set bookmark # 6
static java.lang.String setBookmark7Action
          Name of the action that will set bookmark # 7
static java.lang.String setBookmark8Action
          Name of the action that will set bookmark # 8
static java.lang.String setBookmark9Action
          Name of the action that will set bookmark # 9
static java.lang.String smartBackspaceAction
          Name of the action that will delete the previous character or selection and also delete spaces and/or tab to put the cursor at the most logical position, for instance by moving it to a previous indentation level.
static java.lang.String smartIndentAction
          Name of the action that will insert a line terminator and add enough spaces and/or tabs to put the cursor at the most logical place on the next line, for instance by moving it to the indentation level of the previous line.
static java.lang.String stripTrailingSpaceAction
          Name of the action that strips the blank characters at the end of the current line.
static java.lang.String tabKeyAction
          Name of the action that moves the cursor to the next tab position, inserting spaces and/or tabs.
static java.lang.String toggleBookmarkAction
          Name of the action that will toggle a bookmark on the current line
static java.lang.String toggleCaseAction
          Name of the action that toggles the case of each character in the currently selected text.
static java.lang.String toggleInsertModeAction
          Name of the action that will toggle the editor mode between insert and overwrite.
static java.lang.String topOfScreenAction
          Name of the action that moves the cursor to the top of the screen.
static java.lang.String transposeCharsAction
          Name of the action that transposes the two characters around the cursor.
static java.lang.String transposeLinesAction
          Name of the action that transposes the current and the previous lines.
static java.lang.String transposeWordsAction
          Name of the action that transposes the two words around the cursor.
static java.lang.String undoAction
          Name of the action that undoes the previous action or group of actions.
static java.lang.String unTabKeyAction
          Name of the action that moves the cursor to the previous tab position, deleting tabs and/or spaces.
static java.lang.String upAction
          Name of the Action for moving the caret logically upward one position.
static java.lang.String upperCaseAction
          Name of the action that converts the selected text to all upper case.
static java.lang.String upperCaseWordAction
          Name of the action that will upper case the word currently under the cursor, or if the cursor is between words, it will upper case the previous word.
 

Field Detail

insertBreakAction

public static final java.lang.String insertBreakAction
Name of the action to place a line/paragraph break into the document. If there is a selection, it is removed before the break is added.
See Also:
InsertBreakAction, #getActions

insertTabAction

public static final java.lang.String insertTabAction
Name of the action to place a tab character into the document. If there is a selection, it is removed before the tab is added.
See Also:
InsertTabAction, #getActions

deletePrevCharAction

public static final java.lang.String deletePrevCharAction
Name of the action to delete the character of content that precedes the current caret position.
See Also:
DeletePrevCharAction, #getActions

deleteNextCharAction

public static final java.lang.String deleteNextCharAction
Name of the action to delete the character of content that follows the current caret position.
See Also:
DeleteNextCharAction, #getActions

cutAction

public static final java.lang.String cutAction
Name of the action to cut the selected region and place the contents into the system clipboard.
See Also:
JTextComponent#cut, #getActions

copyAction

public static final java.lang.String copyAction
Name of the action to copy the selected region and place the contents into the system clipboard.
See Also:
JTextComponent#copy, #getActions

pasteAction

public static final java.lang.String pasteAction
Name of the action to paste the contents of the system clipboard into the selected region, or before the caret if nothing is selected.
See Also:
JTextComponent#paste, #getActions

beepAction

public static final java.lang.String beepAction
Name of the action to create a beep.
See Also:
BeepAction, #getActions

pageUpAction

public static final java.lang.String pageUpAction
Name of the action to page up vertically.
See Also:
PageUpAction, #getActions

pageDownAction

public static final java.lang.String pageDownAction
Name of the action to page down vertically.
See Also:
PageDownAction, #getActions

pageLeftAction

public static final java.lang.String pageLeftAction
Name of the action to page left horizontally.
See Also:
PageLeftAction, #getActions

pageRightAction

public static final java.lang.String pageRightAction
Name of the action to page right horizontally.
See Also:
PageRightAction, #getActions

forwardAction

public static final java.lang.String forwardAction
Name of the Action for moving the caret logically forward one position.
See Also:
NextVisualPositionAction, #getActions

backwardAction

public static final java.lang.String backwardAction
Name of the Action for moving the caret logically backward one position.
See Also:
NextVisualPositionAction, #getActions

selectionForwardAction

public static final java.lang.String selectionForwardAction
Name of the Action for extending the selection by moving the caret logically forward one position.
See Also:
NextVisualPositionAction, #getActions

selectionBackwardAction

public static final java.lang.String selectionBackwardAction
Name of the Action for extending the selection by moving the caret logically backward one position.
See Also:
NextVisualPositionAction, #getActions

upAction

public static final java.lang.String upAction
Name of the Action for moving the caret logically upward one position.
See Also:
NextVisualPositionAction, #getActions

downAction

public static final java.lang.String downAction
Name of the Action for moving the caret logically downward one position.
See Also:
NextVisualPositionAction, #getActions

selectionUpAction

public static final java.lang.String selectionUpAction
Name of the Action for moving the caret logically upward one position, extending the selection.
See Also:
NextVisualPositionAction, #getActions

selectionDownAction

public static final java.lang.String selectionDownAction
Name of the Action for moving the caret logically downward one position, extending the selection.
See Also:
NextVisualPositionAction, #getActions

beginWordAction

public static final java.lang.String beginWordAction
Name of the Action for moving the caret to the begining of a word.
See Also:
BeginAction, #getActions

endWordAction

public static final java.lang.String endWordAction
Name of the Action for moving the caret to the end of a word.
See Also:
EndAction, #getActions

selectionBeginWordAction

public static final java.lang.String selectionBeginWordAction
Name of the Action for moving the caret to the begining of a word, extending the selection.
See Also:
BeginWordAction, #getActions

selectionEndWordAction

public static final java.lang.String selectionEndWordAction
Name of the Action for moving the caret to the end of a word, extending the selection.
See Also:
EndWordAction, #getActions

previousWordAction

public static final java.lang.String previousWordAction
Name of the Action for moving the caret to the begining of the previous word.
See Also:
PreviousWordAction, #getActions

nextWordAction

public static final java.lang.String nextWordAction
Name of the Action for moving the caret to the begining of the next word.
See Also:
NextWordAction, #getActions

selectionPreviousWordAction

public static final java.lang.String selectionPreviousWordAction
Name of the Action for moving the selection to the begining of the previous word, extending the selection.
See Also:
PreviousWordAction, #getActions

selectionNextWordAction

public static final java.lang.String selectionNextWordAction
Name of the Action for moving the selection to the begining of the next word, extending the selection.
See Also:
NextWordAction, #getActions

beginLineAction

public static final java.lang.String beginLineAction
Name of the Action for moving the caret to the begining of a line.
See Also:
BeginLineAction, #getActions

endLineAction

public static final java.lang.String endLineAction
Name of the Action for moving the caret to the end of a line.
See Also:
EndLineAction, #getActions

selectionBeginLineAction

public static final java.lang.String selectionBeginLineAction
Name of the Action for moving the caret to the begining of a line, extending the selection.
See Also:
BeginLineAction, #getActions

selectionEndLineAction

public static final java.lang.String selectionEndLineAction
Name of the Action for moving the caret to the end of a line, extending the selection.
See Also:
EndLineAction, #getActions

beginAction

public static final java.lang.String beginAction
Name of the Action for moving the caret to the begining of the document.
See Also:
BeginAction, #getActions

endAction

public static final java.lang.String endAction
Name of the Action for moving the caret to the end of the document.
See Also:
EndAction, #getActions

selectionBeginAction

public static final java.lang.String selectionBeginAction
Name of the Action for moving the caret to the begining of the document, extending the selection.
See Also:
BeginAction, #getActions

selectionEndAction

public static final java.lang.String selectionEndAction
Name of the Action for moving the caret to the end of the document, extending the selection.
See Also:
EndAction, #getActions

selectionMatchBraceAction

public static final java.lang.String selectionMatchBraceAction
Name of the Action for selection code from one bracket to the matching bracket.
See Also:
MatchBraceAction

selectWordAction

public static final java.lang.String selectWordAction
Name of the Action for selecting a word around the caret.
See Also:
SelectWordAction, #getActions

selectLineAction

public static final java.lang.String selectLineAction
Name of the Action for selecting a line around the caret.
See Also:
SelectLineAction, #getActions

selectMultiLineAction

public static final java.lang.String selectMultiLineAction
Name of the Action for selecting a line around the caret and entering the LINE_SELECTION mode used in keymaps like Brief and Visual Studio.
See Also:
SelectLineAction, #getActions

selectAllAction

public static final java.lang.String selectAllAction
Name of the Action for selecting the entire document
See Also:
SelectAllAction, #getActions

defaultKeyTypedAction

public static final java.lang.String defaultKeyTypedAction
Name of the action that is executed by default if a key typed event is received and there is no keymap entry.
See Also:
DefaultKeyTypedAction, #getActions

topOfScreenAction

public static final java.lang.String topOfScreenAction
Name of the action that moves the cursor to the top of the screen.
See Also:
EditorActions.TopOfScreenAction

bottomOfScreenAction

public static final java.lang.String bottomOfScreenAction
Name of the action that moves the cursor to the bottom of the screen.
See Also:
EditorActions.BottomOfScreenAction

tabKeyAction

public static final java.lang.String tabKeyAction
Name of the action that moves the cursor to the next tab position, inserting spaces and/or tabs.
See Also:
EditorActions.TabKeyAction

unTabKeyAction

public static final java.lang.String unTabKeyAction
Name of the action that moves the cursor to the previous tab position, deleting tabs and/or spaces.
See Also:
EditorActions.UnTabKeyAction

scrollUpAction

public static final java.lang.String scrollUpAction
Name of the action that scrolls the screen up one line.
See Also:
EditorActions.ScrollUpAction

scrollDownAction

public static final java.lang.String scrollDownAction
Name of the action that scrolls the screen down one line.
See Also:
EditorActions.ScrollDownAction

scrollLeftAction

public static final java.lang.String scrollLeftAction
Name of the action that scrolls the screen one column to the left.
See Also:
EditorActions.ScrollLeftAction

scrollRightAction

public static final java.lang.String scrollRightAction
Name of the action that scrolls the screen one column to the right.
See Also:
EditorActions.ScrollRightAction

gotoLineDialogAction

public static final java.lang.String gotoLineDialogAction
Name of the action that brings up a dialog box that accepts a line number. The editor will position that line on the screen and set the cursor at the start of that line.
See Also:
EditorActions.GotoLineDialog

matchBraceAction

public static final java.lang.String matchBraceAction
Name of the action that will find the matching curly bracket, square bracket, or parenthesis, if the cursor is at a bracket or parenthesis.
See Also:
EditorActions.MatchBraceAction

toggleBookmarkAction

public static final java.lang.String toggleBookmarkAction
Name of the action that will toggle a bookmark on the current line
See Also:
EditorActions.ToggleBookmarkAction

setBookmark0Action

public static final java.lang.String setBookmark0Action
Name of the action that will set bookmark # 0
See Also:
EditorActions.SetBookmarkAction

setBookmark1Action

public static final java.lang.String setBookmark1Action
Name of the action that will set bookmark # 1
See Also:
EditorActions.SetBookmarkAction

setBookmark2Action

public static final java.lang.String setBookmark2Action
Name of the action that will set bookmark # 2
See Also:
EditorActions.SetBookmarkAction

setBookmark3Action

public static final java.lang.String setBookmark3Action
Name of the action that will set bookmark # 3
See Also:
EditorActions.SetBookmarkAction

setBookmark4Action

public static final java.lang.String setBookmark4Action
Name of the action that will set bookmark # 4
See Also:
EditorActions.SetBookmarkAction

setBookmark5Action

public static final java.lang.String setBookmark5Action
Name of the action that will set bookmark # 5
See Also:
EditorActions.SetBookmarkAction

setBookmark6Action

public static final java.lang.String setBookmark6Action
Name of the action that will set bookmark # 6
See Also:
EditorActions.SetBookmarkAction

setBookmark7Action

public static final java.lang.String setBookmark7Action
Name of the action that will set bookmark # 7
See Also:
EditorActions.SetBookmarkAction

setBookmark8Action

public static final java.lang.String setBookmark8Action
Name of the action that will set bookmark # 8
See Also:
EditorActions.SetBookmarkAction

setBookmark9Action

public static final java.lang.String setBookmark9Action
Name of the action that will set bookmark # 9
See Also:
EditorActions.SetBookmarkAction

clearBookmarksAction

public static final java.lang.String clearBookmarksAction
Name of the action that will clear all bookmarks in the current editor window.
See Also:
EditorActions.ClearBookmarksAction

gotoBookmark0Action

public static final java.lang.String gotoBookmark0Action
Name of the action that will position the cursor at bookmark # 0
See Also:
EditorActions.GotoBookMarkAction

gotoBookmark1Action

public static final java.lang.String gotoBookmark1Action
Name of the action that will position the cursor at bookmark # 1
See Also:
EditorActions.GotoBookMarkAction

gotoBookmark2Action

public static final java.lang.String gotoBookmark2Action
Name of the action that will position the cursor at bookmark # 2
See Also:
EditorActions.GotoBookMarkAction

gotoBookmark3Action

public static final java.lang.String gotoBookmark3Action
Name of the action that will position the cursor at bookmark # 3
See Also:
EditorActions.GotoBookMarkAction

gotoBookmark4Action

public static final java.lang.String gotoBookmark4Action
Name of the action that will position the cursor at bookmark # 4
See Also:
EditorActions.GotoBookMarkAction

gotoBookmark5Action

public static final java.lang.String gotoBookmark5Action
Name of the action that will position the cursor at bookmark # 5
See Also:
EditorActions.GotoBookMarkAction

gotoBookmark6Action

public static final java.lang.String gotoBookmark6Action
Name of the action that will position the cursor at bookmark # 6
See Also:
EditorActions.GotoBookMarkAction

gotoBookmark7Action

public static final java.lang.String gotoBookmark7Action
Name of the action that will position the cursor at bookmark # 7
See Also:
EditorActions.GotoBookMarkAction

gotoBookmark8Action

public static final java.lang.String gotoBookmark8Action
Name of the action that will position the cursor at bookmark # 8
See Also:
EditorActions.GotoBookMarkAction

gotoBookmark9Action

public static final java.lang.String gotoBookmark9Action
Name of the action that will position the cursor at bookmark # 9
See Also:
EditorActions.GotoBookMarkAction

nextBookmarkAction

public static final java.lang.String nextBookmarkAction
Name of the action that will position the cursor at the next bookmark below the current line, with wrap around to the top if no bookmark is found before the end of the file.

previousBookmarkAction

public static final java.lang.String previousBookmarkAction
Name of the action that will position the cursor at the previous bookmark above the current line, with wrap around to the bottom if no bookmark is found before the beginning of the file.

selectionTopOfScreenAction

public static final java.lang.String selectionTopOfScreenAction
Name of the action that will position the cursor at the top of the screen, extending the selection.
See Also:
EditorActions.TopOfScreenAction

selectionBottomOfScreenAction

public static final java.lang.String selectionBottomOfScreenAction
Name of the action that will position the cursor at the bottom of the screen, extending the selection.
See Also:
EditorActions.BottomOfScreenAction

selectionPageUpAction

public static final java.lang.String selectionPageUpAction
Name of the action that will scroll the page up one screen.
See Also:
EditorActions.PageUpAction

selectionPageDownAction

public static final java.lang.String selectionPageDownAction
Name of the action that will scroll the page down one screen.
See Also:
EditorActions.PageDownAction

toggleInsertModeAction

public static final java.lang.String toggleInsertModeAction
Name of the action that will toggle the editor mode between insert and overwrite.
See Also:
EditorActions.ToggleInsertMode

deleteSelectionAction

public static final java.lang.String deleteSelectionAction
Name of the action that will delete the current selection.
See Also:
EditorActions.DeleteSelectionAction

deleteLineAction

public static final java.lang.String deleteLineAction
Name of the action that will delete the line the cursor is on.
See Also:
EditorActions.DeleteLineAction

deleteBeginLineAction

public static final java.lang.String deleteBeginLineAction
Name of the action that will delete from the start of the current line to the cursor.
See Also:
EditorActions.DeleteBeginLineAction

deleteEndLineAction

public static final java.lang.String deleteEndLineAction
Name of the action that will delete from the cursor to the end of the current line.
See Also:
EditorActions.DeleteEndLineAction

deleteWordAction

public static final java.lang.String deleteWordAction
Name of the action that will delete from the cursor to the end of the word under the cursor. If the cursor is inbetween words, all characters till the end of the next word are deleted.
See Also:
EditorActions.DeleteWordAction

deleteBeginWordAction

public static final java.lang.String deleteBeginWordAction
Name of the action that will delete from the cursor to the start of the word under the cursor. If the cursor is inbetween words, all characters up to the start of the previous word are deleted.
See Also:
EditorActions.DeleteBeginWordAction

indentBlockAction

public static final java.lang.String indentBlockAction
Name of the action that will indent all lines that are contained in the current selection.
See Also:
EditorActions.IndentBlockAction

outdentBlockAction

public static final java.lang.String outdentBlockAction
Name of the action that will outdent all lines that are contained in the current selection.
See Also:
EditorActions.OutdentBlockAction

smartIndentAction

public static final java.lang.String smartIndentAction
Name of the action that will insert a line terminator and add enough spaces and/or tabs to put the cursor at the most logical place on the next line, for instance by moving it to the indentation level of the previous line.
See Also:
EditorActions.SmartIndentAction

smartBackspaceAction

public static final java.lang.String smartBackspaceAction
Name of the action that will delete the previous character or selection and also delete spaces and/or tab to put the cursor at the most logical position, for instance by moving it to a previous indentation level.
See Also:
EditorActions.SmartBackSpaceAction

undoAction

public static final java.lang.String undoAction
Name of the action that undoes the previous action or group of actions.
See Also:
EditorActions.UndoAction

redoAction

public static final java.lang.String redoAction
Name of the action that redoes the previous action or group of actions that was undone.
See Also:
EditorActions.RedoAction

upperCaseAction

public static final java.lang.String upperCaseAction
Name of the action that converts the selected text to all upper case.
See Also:
EditorActions.UpperCaseAction

lowerCaseAction

public static final java.lang.String lowerCaseAction
Name of the action that converts the selected text to all lower case.
See Also:
EditorActions.LowerCaseAction

toggleCaseAction

public static final java.lang.String toggleCaseAction
Name of the action that toggles the case of each character in the currently selected text.
See Also:
EditorActions.ToggleCaseAction

openLineAction

public static final java.lang.String openLineAction
Name of the action that will add a line terminator after the cursor, effectively splitting the current line in two. The cursor will be left at the end of the first line.
See Also:
EditorActions.OpenLineAction

upperCaseWordAction

public static final java.lang.String upperCaseWordAction
Name of the action that will upper case the word currently under the cursor, or if the cursor is between words, it will upper case the previous word.
See Also:
EditorActions.ChangeWordCaseAction

lowerCaseWordAction

public static final java.lang.String lowerCaseWordAction
Name of the action that will lower case the word currently under the cursor, or if the cursor is between words, it will lower case the previous word.
See Also:
EditorActions.ChangeWordCaseAction

searchDialogAction

public static final java.lang.String searchDialogAction
Name of the action that will bring up the search dialog.
See Also:
EditorActions.SearchDialogAction

searchAgainAction

public static final java.lang.String searchAgainAction
Name of the action that will repeat the previous search.
See Also:
EditorActions.SearchAgainAction

searchAgainInReverseAction

public static final java.lang.String searchAgainInReverseAction
Name of the action that will repeat the previous search but in the reverse direction.
See Also:
EditorActions.SearchAgainAction

searchAgainForwardAction

public static final java.lang.String searchAgainForwardAction
Name of the action that will repeat the previous search, but will always force a forward direction
See Also:
EditorActions.SearchAgainAction

searchAgainBackwardAction

public static final java.lang.String searchAgainBackwardAction
Name of the action that will repeat the previous search, but will always force a backward direction
See Also:
EditorActions.SearchAgainAction

replaceDialogAction

public static final java.lang.String replaceDialogAction
Name of the action that will bring up the replace dialog.
See Also:
EditorActions.ReplaceDialogAction

searchSelectedForwardAction

public static final java.lang.String searchSelectedForwardAction
Name of the action that will do a forward search using the selected text.
See Also:
EditorActions.SearchSelectedAction

searchSelectedBackwardAction

public static final java.lang.String searchSelectedBackwardAction
Name of the action that will do a backward search using the selected text.
See Also:
EditorActions.SearchSelectedAction

incrSearchAction

public static final java.lang.String incrSearchAction
Name of the action that will start the incremental search by bringing up a tiny editor box at the top of the screen.
See Also:
EditorActions.IncrementalSearchAction

reverseIncrSearchAction

public static final java.lang.String reverseIncrSearchAction
Name of the action that will start the reverse incremental search by bringing up a tiny editor box at the top of the screen.
See Also:
EditorActions.IncrementalSearchAction

recenterAction

public static final java.lang.String recenterAction
Name of the action that puts the current in the center of the screen.
See Also:
EditorActions.RecenterAction

printAction

public static final java.lang.String printAction
Name of the action that executes a print.
See Also:
EditorActions.PrintAction

stripTrailingSpaceAction

public static final java.lang.String stripTrailingSpaceAction
Name of the action that strips the blank characters at the end of the current line.
See Also:
EditorActions.StripTrailingSpaceAction

commentLineAction

public static final java.lang.String commentLineAction
Name of the action that makes the current line a line comment, or if this line is already a line comment, it makes it a regular line instead.
See Also:
EditorActions.CommentLineAction

previousIndentAction

public static final java.lang.String previousIndentAction
Name of the action that moves the caret to the previous indent position.
See Also:
EditorActions.PreviousIndentAction

previousTabStopAction

public static final java.lang.String previousTabStopAction
Name of the action that moves the caret to the previous tab stop.
See Also:
EditorActions.PreviousTabStopAction

transposeLinesAction

public static final java.lang.String transposeLinesAction
Name of the action that transposes the current and the previous lines.
See Also:
EditorActions.TransposeLinesAction

transposeWordsAction

public static final java.lang.String transposeWordsAction
Name of the action that transposes the two words around the cursor.
See Also:
EditorActions.TransposeWordsAction

transposeCharsAction

public static final java.lang.String transposeCharsAction
Name of the action that transposes the two characters around the cursor.
See Also:
EditorActions.TransposeCharsAction

gotoBookmarkDialogAction

public static final java.lang.String gotoBookmarkDialogAction
Name of the action that brings up the goto bookmark dialog.
See Also:
EditorActions.GotoBookmarkDialogAction

closingCurlyBraceAction

public static final java.lang.String closingCurlyBraceAction
Name of the action that will execute special code when the closing curly brace is entered.
See Also:
EditorActions.ClosingCurlyBraceAction