summaryrefslogtreecommitdiffstats
path: root/include/keyb.h
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-01-07 16:01:56 +0100
committerDave Davenport <qball@gmpclient.org>2016-01-07 16:01:56 +0100
commit51b5511017b632129df78d2906882abafd92c38a (patch)
tree3c4edc72d840ac91a80a9eb4d5c621c963c9336f /include/keyb.h
parent38be9d94aedd57dc77da3b994173e22f7c4ce0df (diff)
More doxygen sugar.
Diffstat (limited to 'include/keyb.h')
-rw-r--r--include/keyb.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/keyb.h b/include/keyb.h
index 5f4ab520..bd195017 100644
--- a/include/keyb.h
+++ b/include/keyb.h
@@ -9,19 +9,33 @@
typedef enum _KeyBindingAction
{
+ /** Paste from primary clipboard */
PASTE_PRIMARY = 0,
+ /** Paste from secondary clipboard */
PASTE_SECONDARY,
+ /** Clear the entry box. */
CLEAR_LINE,
+ /** Move to front of text */
MOVE_FRONT,
+ /** Move to end of text */
MOVE_END,
+ /** Move on word back */
MOVE_WORD_BACK,
+ /** Move on word forward */
MOVE_WORD_FORWARD,
+ /** Move character back */
MOVE_CHAR_BACK,
+ /** Move character forward */
MOVE_CHAR_FORWARD,
+ /** Remove previous word */
REMOVE_WORD_BACK,
+ /** Remove next work */
REMOVE_WORD_FORWARD,
+ /** Remove next character */
REMOVE_CHAR_FORWARD,
+ /** Remove previous character */
REMOVE_CHAR_BACK,
+ /** Accept the current selected entry */
ACCEPT_ENTRY,
ACCEPT_CUSTOM,
ACCEPT_ENTRY_CONTINUE,