diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-01-11 10:14:35 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-01-11 10:14:35 +0100 |
commit | 7c503e6f49b140a99535c317092cc2f32d2a7140 (patch) | |
tree | 84a4d9595f5d7ddd3a8cc01de6b7d53937bd9567 /sys/src/cmd/rio/rio.c | |
parent | 784e6ff8cd431e80800e0d7b0a4c5f3b385d8d89 (diff) |
rio: implement "look" (thanks lf94)
Diffstat (limited to 'sys/src/cmd/rio/rio.c')
-rw-r--r-- | sys/src/cmd/rio/rio.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/src/cmd/rio/rio.c b/sys/src/cmd/rio/rio.c index ccf06ab0d..26b9b227d 100644 --- a/sys/src/cmd/rio/rio.c +++ b/sys/src/cmd/rio/rio.c @@ -62,6 +62,7 @@ enum Paste, Snarf, Plumb, + Look, Send, Scroll, }; @@ -71,6 +72,7 @@ char *menu2str[] = { [Paste] "paste", [Snarf] "snarf", [Plumb] "plumb", + [Look] "look", [Send] "send", [Scroll] "scroll", nil @@ -816,6 +818,10 @@ button2menu(Window *w) wplumb(w); break; + case Look: + wlook(w); + break; + case Send: getsnarf(); wsnarf(w); |