summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Cieślak <saper@saper.info>2018-05-25 21:20:32 +0200
committerAmadeusz Sławiński <amade@asmblr.net>2018-05-31 14:38:01 +0200
commitf1935c872ed96bc1361370fc58ceee7d50a143f6 (patch)
treee3a51b33c1c3d4e1504433d4732a1b1d61f3bbc4
parente6d02361b134b2a5da8d2b0d1c72bf1ce4f4bba4 (diff)
downloadscreen-f1935c872ed96bc1361370fc58ceee7d50a143f6.tar.gz
manpage: add vertical space after bindkey examples
bindkey examples seem to be glued to their following descriptions. This looks bad in the printable versions, so give it some space. Alternatively we could possibly reverse the indentation and use something like this: bindkey -d Show all of the default key bindings. but this is inconsistent with other examples.
-rw-r--r--src/doc/screen.15
1 files changed, 5 insertions, 0 deletions
diff --git a/src/doc/screen.1 b/src/doc/screen.1
index 3830168..9d9272c 100644
--- a/src/doc/screen.1
+++ b/src/doc/screen.1
@@ -1153,23 +1153,27 @@ Here are some examples of keyboard bindings:
.nf
bindkey \-d
.fi
+.sp
Show all of the default key bindings. The application mode entries
are marked with [A].
.sp
.nf
bindkey \-k k1 select 1
.fi
+.sp
Make the "F1" key switch to window one.
.sp
.nf
bindkey \-t foo stuff barfoo
.fi
+.sp
Make "foo" an abbreviation of the word "barfoo". Timeout is disabled
so that users can type slowly.
.sp
.nf
bindkey "\e024" mapdefault
.fi
+.sp
This key-binding makes \*Q^T\*U an escape character for key-bindings. If
you did the above \*Qstuff barfoo\*U binding, you can enter the word
\*Qfoo\*U by typing \*Q^Tfoo\*U. If you want to insert a \*Q^T\*U
@@ -1178,6 +1182,7 @@ you have to press the key twice (i.e., escape the escape binding).
.nf
bindkey \-k F1 command
.fi
+.sp
Make the F11 (not F1!) key an alternative screen
escape (besides ^A).
.RE