I have recently started using tmux, I noticed that the ctrl-d command does not close the pane in tmux when a vim editor has been opened in that pane. What additional config needs to be done to get this working? I am using tmux 1.8.
-
2Ctrl-d isn't a tmux command. It signals "end of input" in many programs though, including the shell, which will then exit.melpomene– melpomene2016-06-20 06:36:29 +00:00Commented Jun 20, 2016 at 6:36
-
how to close window/pane in tmux: stackoverflow.com/questions/7771557/…Kent– Kent2016-06-20 09:01:11 +00:00Commented Jun 20, 2016 at 9:01
-
1<Prefix> & for killing a window, <Prefix> x for killing a pane. This usually asks for confirmation, if you do not want the confirmation then include the following in your .tmux.conf "bind-key & kill-window" and "bind-key x kill-pane"user376507– user3765072016-06-21 04:19:57 +00:00Commented Jun 21, 2016 at 4:19
Add a comment
|