30 lines
681 B
C#
30 lines
681 B
C#
namespace Kalk.Core
|
|
{
|
|
public enum KalkAction
|
|
{
|
|
Exit,
|
|
CursorLeft,
|
|
CursorRight,
|
|
CursorLeftWord,
|
|
CursorRightWord,
|
|
CursorStartOfLine,
|
|
CursorEndOfLine,
|
|
HistoryPrevious,
|
|
HistoryNext,
|
|
DeleteCharacterLeft,
|
|
DeleteCharacterLeftAndCopy,
|
|
DeleteCharacterRight,
|
|
DeleteCharacterRightAndCopy,
|
|
DeleteWordLeft,
|
|
DeleteWordRight,
|
|
Completion,
|
|
DeleteTextRightAndCopy,
|
|
DeleteWordRightAndCopy,
|
|
DeleteWordLeftAndCopy,
|
|
CopySelection,
|
|
CutSelection,
|
|
PasteClipboard,
|
|
ValidateLine,
|
|
ForceValidateLine,
|
|
}
|
|
} |