mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-03 17:24:29 +00:00 
			
		
		
		
	Before calling "attach" a screen object is just a dummy container for (row, col) values whose purpose is to be sent as part of the "attach" function call anyway. Just create the screen in an attached state directly. Keep the complete (row, col, options) config together. It is still completely valid to later detach and re-attach as needed, including to another session.
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
local n = require('test.functional.testnvim')()
 | 
						|
local Screen = require('test.functional.ui.screen')
 | 
						|
 | 
						|
local feed = n.feed
 | 
						|
local clear = n.clear
 | 
						|
 | 
						|
describe(':debug', function()
 | 
						|
  local screen
 | 
						|
  before_each(function()
 | 
						|
    clear()
 | 
						|
    screen = Screen.new(30, 14)
 | 
						|
    screen:set_default_attr_ids({
 | 
						|
      [1] = { bold = true, foreground = Screen.colors.Blue1 },
 | 
						|
      [2] = { bold = true, reverse = true },
 | 
						|
      [3] = { foreground = Screen.colors.Grey100, background = Screen.colors.Red },
 | 
						|
      [4] = { bold = true, foreground = Screen.colors.SeaGreen4 },
 | 
						|
    })
 | 
						|
  end)
 | 
						|
  it('scrolls messages correctly', function()
 | 
						|
    feed(':echoerr bork<cr>')
 | 
						|
    screen:expect([[
 | 
						|
                                    |
 | 
						|
      {1:~                             }|*8
 | 
						|
      {2:                              }|
 | 
						|
      {3:E121: Undefined variable: bork}|
 | 
						|
                                    |
 | 
						|
      {4:Press ENTER or type command to}|
 | 
						|
      {4: continue}^                     |
 | 
						|
    ]])
 | 
						|
 | 
						|
    feed(':debug echo "aa"| echo "bb"<cr>')
 | 
						|
    screen:expect([[
 | 
						|
                                    |
 | 
						|
      {1:~                             }|*5
 | 
						|
      {2:                              }|
 | 
						|
      {3:E121: Undefined variable: bork}|
 | 
						|
                                    |
 | 
						|
      {4:Press ENTER or type command to}|
 | 
						|
      Entering Debug mode.  Type "co|
 | 
						|
      nt" to continue.              |
 | 
						|
      cmd: echo "aa"| echo "bb"     |
 | 
						|
      >^                             |
 | 
						|
    ]])
 | 
						|
 | 
						|
    feed('step<cr>')
 | 
						|
    screen:expect([[
 | 
						|
                                    |
 | 
						|
      {1:~                             }|*2
 | 
						|
      {2:                              }|
 | 
						|
      {3:E121: Undefined variable: bork}|
 | 
						|
                                    |
 | 
						|
      {4:Press ENTER or type command to}|
 | 
						|
      Entering Debug mode.  Type "co|
 | 
						|
      nt" to continue.              |
 | 
						|
      cmd: echo "aa"| echo "bb"     |
 | 
						|
      >step                         |
 | 
						|
      aa                            |
 | 
						|
      cmd: echo "bb"                |
 | 
						|
      >^                             |
 | 
						|
    ]])
 | 
						|
 | 
						|
    feed('step<cr>')
 | 
						|
    screen:expect([[
 | 
						|
      {2:                              }|
 | 
						|
      {3:E121: Undefined variable: bork}|
 | 
						|
                                    |
 | 
						|
      {4:Press ENTER or type command to}|
 | 
						|
      Entering Debug mode.  Type "co|
 | 
						|
      nt" to continue.              |
 | 
						|
      cmd: echo "aa"| echo "bb"     |
 | 
						|
      >step                         |
 | 
						|
      aa                            |
 | 
						|
      cmd: echo "bb"                |
 | 
						|
      >step                         |
 | 
						|
      bb                            |
 | 
						|
      {4:Press ENTER or type command to}|
 | 
						|
      {4: continue}^                     |
 | 
						|
    ]])
 | 
						|
 | 
						|
    feed('<cr>')
 | 
						|
    screen:expect([[
 | 
						|
      ^                              |
 | 
						|
      {1:~                             }|*12
 | 
						|
                                    |
 | 
						|
    ]])
 | 
						|
  end)
 | 
						|
end)
 |