From f476177ad149feaee3cb23c355a191e62ec957fe Mon Sep 17 00:00:00 2001 From: benmills Date: Fri, 15 Jun 2012 11:06:38 -0700 Subject: [PATCH] Add VimuxClearRunnerHistory to docs and example keybind changes --- doc/vimux.txt | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/doc/vimux.txt b/doc/vimux.txt index 0e21785..2fe686d 100644 --- a/doc/vimux.txt +++ b/doc/vimux.txt @@ -14,6 +14,7 @@ CONTENTS *vimux-contents* 2.4 .............................. |VimuxCloseRunner| 2.5 .............................. |VimuxClosePanes| 2.6 .............................. |VimuxInterruptRunner| + 2.7 .............................. |VimuxClearRunnerHistory| 3. Misc ............................ |VimuxMisc| 3.1 Example Keybinding............ |VimuxExampleKeybinding| 3.2 Tslime Replacement............ |VimuxTslimeReplacement| @@ -67,6 +68,7 @@ Furthermore there are several handy commands all starting with 'Vimux': - |VimuxInspectRunner| - |VimuxInterruptRunner| - |VimuxPromptCommand| + - |VimuxClearRunnerHistory| Note: @@ -106,7 +108,7 @@ Prompt for a command and run it in a small horizontal split bellow the current pane. > " Prompt for a command to run map - rp :VimuxPromptCommand + vp :VimuxPromptCommand < ------------------------------------------------------------------------------ @@ -117,7 +119,7 @@ VimuxRunLastCommand~ Run the last command executed by `VimuxRunCommand` > " Run last command executed by VimuxRunCommand - map rl :VimuxRunLastCommand + map vl :VimuxRunLastCommand < ------------------------------------------------------------------------------ @@ -129,7 +131,7 @@ Move into the tmux runner pane created by `VimuxRunCommand` and enter copy pmode (scroll mode). > " Inspect runner pane map - ri :VimuxInspectRunner + vi :VimuxInspectRunner < ------------------------------------------------------------------------------ @@ -140,7 +142,7 @@ VimuxCloseRunner~ Close the tmux runner created by `VimuxRunCommand` > " Close vim tmux runner opened by VimuxRunCommand - map rq :VimuxCloseRunner + map vq :VimuxCloseRunner < ------------------------------------------------------------------------------ @@ -151,7 +153,7 @@ VimuxClosePanes~ Close all other tmux panes in the current window. > " Close all other tmux panes in current window - map rx :VimuxClosePanes + map vx :VimuxClosePanes > ------------------------------------------------------------------------------ @@ -163,7 +165,20 @@ Interrupt any command that is running inside the runner pane. > " Interrupt any command running in the runner pane map - rs :VimuxInterruptRunner + vs :VimuxInterruptRunner +< + + + +------------------------------------------------------------------------------ + *VimuxClearRunnerHistory* +VimuxClearRunnerHistory~ + +Clear ths tmux history of the runner pane for when +you enter tmux scroll mode inside the runner pane. +> + " Clear the tmux history of the runner pane + vc :VimuxClearRunnerHistory <