Remove deprecation warnings

1.0.0rc1 0.3.0
benmills 12 years ago
parent 90129466fa
commit 0eefeff876

@ -47,7 +47,6 @@ endfunction
" deprecated! " deprecated!
function RunVimTmuxCommand(command, ...) function RunVimTmuxCommand(command, ...)
" TODO replace me with the direct function call! " TODO replace me with the direct function call!
echoerr "RunVimTmuxCommand is deprecated, use VimuxRunCommand instead."
let l:autoreturn = 1 let l:autoreturn = 1
if exists("a:1") if exists("a:1")
@ -74,7 +73,6 @@ endfunction
" deprecated! " deprecated!
function RunLastVimTmuxCommand() function RunLastVimTmuxCommand()
echoerr "RunLastVimTmuxCommand is deprecated, use VimuxRunLastCommand instead."
call VimuxRunLastCommand() call VimuxRunLastCommand()
endfunction endfunction
@ -87,14 +85,12 @@ endfunction
" deprecated! " deprecated!
function ClearVimTmuxWindow() function ClearVimTmuxWindow()
echoerr "ClearVimTmuxWindow is deprecated, use VimuxClearWindow instead."
call VimuxClearWindow() call VimuxClearWindow()
endfunction endfunction
" deprecated! " deprecated!
function CloseVimTmuxWindows() function CloseVimTmuxWindows()
echoerr "ClearVimTmuxWindow is deprecated, use VimuxClosePanes instead."
call VimuxCloseWindows() call VimuxCloseWindows()
endfunction endfunction
@ -106,7 +102,6 @@ endfunction
" deprecated! " deprecated!
function CloseVimTmuxRunner() function CloseVimTmuxRunner()
echoerr "CloseVimTmuxRunner is deprecated, use VimuxCloseRunner instead."
call VimuxCloseRunner() call VimuxCloseRunner()
endfunction endfunction
@ -118,7 +113,6 @@ endfunction
" deprecated! " deprecated!
function CloseVimTmuxPanes() function CloseVimTmuxPanes()
echoerr "CloseVimTmuxPanes is deprecated, use VimuxClosePanes instead."
call VimuxClosePanes() call VimuxClosePanes()
endfunction endfunction
@ -129,7 +123,6 @@ endfunction
" deprecated! " deprecated!
function InterruptVimTmuxRunner() function InterruptVimTmuxRunner()
echoerr "InterruptVimTmuxRunner is deprecated, use VimuxInterruptRunner instead."
call VimuxInterruptRunner() call VimuxInterruptRunner()
endfunction endfunction
@ -140,7 +133,6 @@ endfunction
" deprecated! " deprecated!
function InspectVimTmuxRunner() function InspectVimTmuxRunner()
echoerr "InspectVimTmuxRunner is deprecated, use VimuxInspectRunner instead."
call VimuxInspectRunner() call VimuxInspectRunner()
endfunction endfunction
@ -152,7 +144,6 @@ endfunction
" deprecated! " deprecated!
function PromptVimTmuxCommand() function PromptVimTmuxCommand()
echoerr "PromptVimTmuxCommand is deprecated, use VimuxPromptCommand instead."
call VimuxPromptCommand() call VimuxPromptCommand()
endfunction endfunction

Loading…
Cancel
Save