aboutsummaryrefslogtreecommitdiff
path: root/tmux.1
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2011-08-24 10:46:01 +0000
committerNicholas Marriott <nicm@openbsd.org>2011-08-24 10:46:01 +0000
commit0588168a64d9da2eb618b1e87e9774e33828e8c1 (patch)
treed7bc28882c4a78c0cea86361d9aace7e82a9ef13 /tmux.1
parentf01b7191a328193646885f2bb5f7ce50625385b1 (diff)
downloadrtmux-0588168a64d9da2eb618b1e87e9774e33828e8c1.tar.gz
rtmux-0588168a64d9da2eb618b1e87e9774e33828e8c1.tar.bz2
rtmux-0588168a64d9da2eb618b1e87e9774e33828e8c1.zip
Support \ for line continuation in the configuration file, from Julius
Plenz.
Diffstat (limited to 'tmux.1')
-rw-r--r--tmux.16
1 files changed, 5 insertions, 1 deletions
diff --git a/tmux.1 b/tmux.1
index b86612c5..4543bd39 100644
--- a/tmux.1
+++ b/tmux.1
@@ -491,7 +491,8 @@ $ tmux bind-key F1 set-window-option force-width 81
Multiple commands may be specified together as part of a
.Em command sequence .
Each command should be separated by spaces and a semicolon;
-commands are executed sequentially from left to right.
+commands are executed sequentially from left to right and
+lines ending with a backslash continue on to the next line.
A literal semicolon may be included by escaping it with a backslash (for
example, when specifying a command sequence to
.Ic bind-key ) .
@@ -507,6 +508,9 @@ rename-session -tfirst newname
set-window-option -t:0 monitor-activity on
new-window ; split-window -d
+
+bind-key R source-file ~/.tmux.conf \e; \e
+ display-message "source-file done"
.Ed
.Pp
Or from