diff options
author | nicm <nicm> | 2020-05-16 15:24:28 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-05-16 15:24:28 +0000 |
commit | 78595457f965975cf5a24e8bbab6dcb153020b6e (patch) | |
tree | 622695a4a91e2d3fd490d8f0b9e79aa48ae9bedc /cmd-display-menu.c | |
parent | a3cbc014c386fd1f171e3139ed71c67503e1ccb3 (diff) | |
download | rtmux-78595457f965975cf5a24e8bbab6dcb153020b6e.tar.gz rtmux-78595457f965975cf5a24e8bbab6dcb153020b6e.tar.bz2 rtmux-78595457f965975cf5a24e8bbab6dcb153020b6e.zip |
Add 'e' key in buffer mode to open the buffer in an editor.
Diffstat (limited to 'cmd-display-menu.c')
-rw-r--r-- | cmd-display-menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-display-menu.c b/cmd-display-menu.c index 0a5c7f78..ae322444 100644 --- a/cmd-display-menu.c +++ b/cmd-display-menu.c @@ -313,7 +313,7 @@ cmd_display_popup_exec(struct cmd *self, struct cmdq_item *item) else if (args_has(args, 'E')) flags |= POPUP_CLOSEEXIT; if (popup_display(flags, item, px, py, w, h, nlines, lines, shellcmd, - cmd, cwd, tc, target) != 0) + cmd, cwd, tc, target, NULL, NULL) != 0) return (CMD_RETURN_NORMAL); return (CMD_RETURN_WAIT); } |