Files
FSI.BT.IR.Tools/Kalk/Kalk.Core/KalkAction.cs
Maier Stephan SI b684704bf8 Sicherung
2023-01-20 16:09:00 +01:00

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,
}
}