diff options
author | Daniel Carl <danielcarl@gmx.de> | 2013-07-06 23:31:57 +0200 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2013-07-07 00:35:40 +0200 |
commit | 97dcc8959fa0b4b87cea5903e7dcd4a9b8a9d02c (patch) | |
tree | dbb5d3b92478cd29e29e9a81c7550ef01115a0d1 /src/command.h | |
parent | 49a41b1475aa11a3aa1df7537a16c705844bd5f0 (diff) |
Added command to search for current selected text.
Commands 'search-selection-forward' and 'search-selection-backward' where
added to search for the text that was selected. The commands are bound to the
keys '*' and '#' like in vim editor.
Diffstat (limited to 'src/command.h')
-rw-r--r-- | src/command.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/command.h b/src/command.h index c562272..dcdd25f 100644 --- a/src/command.h +++ b/src/command.h @@ -69,6 +69,7 @@ gboolean command_hints(const Arg *arg); gboolean command_yank(const Arg *arg); gboolean command_paste(const Arg *arg); gboolean command_search(const Arg *arg); +gboolean command_selsearch(const Arg *arg); gboolean command_shortcut(const Arg *arg); gboolean command_shortcut_default(const Arg *arg); gboolean command_zoom(const Arg *arg); |