diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-09-08 17:27:25 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-09-08 17:27:25 +0200 |
| commit | e7b6ac1574ba4dad280e6a45beb52dac4e3ea2e9 (patch) | |
| tree | c77ced81181dcb972afc2b52e7425ddc29228319 /main.c | |
| parent | 403ee5284a70f778b379041c169f72a7586c59ee (diff) | |
| download | vis-e7b6ac1574ba4dad280e6a45beb52dac4e3ea2e9.tar.gz vis-e7b6ac1574ba4dad280e6a45beb52dac4e3ea2e9.tar.xz | |
Hook up search as a movement
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -104,8 +104,6 @@ typedef struct { static Key getkey(void); static void cursor(const Arg *arg); static void call(const Arg *arg); -static void find_forward(const Arg *arg); -static void find_backward(const Arg *arg); #include "config.h" @@ -119,14 +117,6 @@ static void call(const Arg *arg) { arg->f(vis); } -static void find_forward(const Arg *arg) { - vis_search(vis, arg->s, 1); -} - -static void find_backward(const Arg *arg) { - vis_search(vis, arg->s, -1); -} - typedef struct Screen Screen; static struct Screen { int w, h; |
