Ensuring there are no "press enter" prompts
This is for the diagnostic echo.
This commit is contained in:
parent
f8f20b8eea
commit
dc01ad8240
@ -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( "'", "''" )
|
||||
|
Loading…
Reference in New Issue
Block a user