From 6f66c734dec65fb5e6969a3dcf3bddb405011593 Mon Sep 17 00:00:00 2001 From: Ben Mills Date: Wed, 29 Feb 2012 19:22:10 -0600 Subject: [PATCH] Update README.mkd --- README.mkd | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/README.mkd b/README.mkd index afe788a..731ceb9 100644 --- a/README.mkd +++ b/README.mkd @@ -13,8 +13,6 @@ Otherwise download the latest [tarball](https://github.com/benmills/vimux/tarbal ### RunVimTmuxCommand Run a system command in a small horizontal split bellow the current pane vim is in. -*Example:* - ```viml " Run the current file with rspec map rb :call RunVimTmuxCommand("clear && rspec " . bufname("%")) @@ -23,8 +21,6 @@ map rb :call RunVimTmuxCommand("clear && rspec " . bufname("%")) ### PromptVimTmuxCommand Prompt for a command and run it in a small horizontal split bellow the current pane. -*Example:* - ```viml " Prompt for a command to run map rp :PromptVimTmuxCommand @@ -33,8 +29,6 @@ map rp :PromptVimTmuxCommand ### RunLastVimTmuxCommand Run the last command executed by `RunVimTmuxCommand` -*Example:* - ```viml " Run last command executed by RunVimTmuxCommand map rl :call RunLastVimTmuxCommand @@ -43,8 +37,6 @@ map rl :call RunLastVimTmuxCommand ### InspectVimTmuxRunner Move into the tmux runner pane created by `RunVimTmuxCommand` and enter copy mode (scroll mode). -*Example:* - ```viml " Inspect runner pane map ri :InspectVimTmuxRunner @@ -53,8 +45,6 @@ map ri :InspectVimTmuxRunner ### CloseVimTmuxWindows Close all other tmux panes in the current window. -*Example:* - ```viml " Close all other tmux panes in current window map rx :CloseVimTmuxWindows @@ -63,14 +53,12 @@ map rx :CloseVimTmuxWindows ### InterruptVimTmuxRunner Interrupt any command that is running inside the runner pane. -*Example:* - ```viml " Interrupt any command running in the runner pane -map rs :InspectVimTmuxRunner +map rs :InterruptVimTmuxRunner ``` -### Full Example Code +### Full Keybind Example ```viml " Run the current file with rspec @@ -89,7 +77,7 @@ map ri :InspectVimTmuxRunner map rx :CloseVimTmuxWindows " Interrupt any command running in the runner pane -map rs :InspectVimTmuxRunner +map rs :InterruptVimTmuxRunner ``` ## Options