Ensuring there are no "press enter" prompts

This is for the diagnostic echo.
This commit is contained in:
Strahinja Val Markovic 2014-01-09 13:49:06 -08:00
parent f8f20b8eea
commit dc01ad8240

View File

@ -286,8 +286,16 @@ def EchoTextVimWidth( text ):
vim_width = GetIntValue( '&columns' )
truncated_text = str( text )[ : int( vim_width * 0.9 ) ]
truncated_text.replace( '\n', ' ' )
old_ruler = GetIntValue( '&ruler' )
old_showcmd = GetIntValue( '&showcmd' )
vim.command( 'set noruler noshowcmd' )
EchoText( truncated_text, False )
vim.command( 'let &ruler = {0}'.format( old_ruler ) )
vim.command( 'let &showcmd = {0}'.format( old_showcmd ) )
def EscapeForVim( text ):
return text.replace( "'", "''" )