diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-08-20 07:58:25 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-08-20 07:58:44 +0100 |
commit | 28d26fca355831c2af0ebe004d9c3fa396794473 (patch) | |
tree | fd489f0982483cfe7e325070646b623a422c6229 | |
parent | 3676779156dcef4d23b83f0a9f7930e3c8fd4263 (diff) | |
download | rtmux-28d26fca355831c2af0ebe004d9c3fa396794473.tar.gz rtmux-28d26fca355831c2af0ebe004d9c3fa396794473.tar.bz2 rtmux-28d26fca355831c2af0ebe004d9c3fa396794473.zip |
Update a regress conf for new syntax.
-rw-r--r-- | regress/conf/872441a98b06444acc5ce08eb24aabde.conf (renamed from regress/conf/2e0f96ac3e1c144ce48261a4c9d68a48.conf) | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/regress/conf/2e0f96ac3e1c144ce48261a4c9d68a48.conf b/regress/conf/872441a98b06444acc5ce08eb24aabde.conf index df4c2b1c..b074ad76 100644 --- a/regress/conf/2e0f96ac3e1c144ce48261a4c9d68a48.conf +++ b/regress/conf/872441a98b06444acc5ce08eb24aabde.conf @@ -14,12 +14,13 @@ bind C { copy-mode -s'{last}' } +set -g word-separators "" bind -n C-DoubleClick1Pane if -F '#{m/r:^[^:]*:[0-9]+:,#{mouse_word}}' { - popup -w90% -h90% -KE -d '#{pane_current_path}' -R { - emacs `echo #{mouse_word}|awk -F: '{print "+" $2,$1}'` - } + run -C { popup -w90% -h90% -E -d '#{pane_current_path}' ' + emacs `echo #{mouse_word}|awk -F: "{print \"+\"\\$2,\\$1}"` + ' } } { - popup -w90% -h90% -KE -d '#{pane_current_path}' -R { - emacs "#{mouse_word}" - } + run -C { popup -w90% -h90% -E -d '#{pane_current_path}' ' + emacs "#{mouse_word}" + ' } } |