From 0565d25a6934c65f0bc14ecf477ccc15db8d68f1 Mon Sep 17 00:00:00 2001 From: Chris Toomey Date: Fri, 23 Nov 2012 23:38:45 -0500 Subject: [PATCH] Expose public VTRSendCommand function --- plugin/vim-tmux-runner.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugin/vim-tmux-runner.vim b/plugin/vim-tmux-runner.vim index 9cfbe45..edebbdf 100644 --- a/plugin/vim-tmux-runner.vim +++ b/plugin/vim-tmux-runner.vim @@ -242,6 +242,10 @@ function! s:DefineKeymaps() endif endfunction +function! VTRSendCommand(command) + call s:SendKeys(a:command) +endfunction + call s:InitializeVariables() call s:DefineCommands() call s:DefineKeymaps()