diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-03-16 10:59:29 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-03-16 10:59:29 -0300 |
commit | f6d4bfd51bb68d84bfc265fa973ea75978ecf304 (patch) | |
tree | cde83d46453e3cd56840a16191525826584062f6 /test/functional/ui | |
parent | 7eee9c2a220fd1f0e600ae365e996fb56aa4cec1 (diff) | |
parent | 1d80c0e3a058dcb6b0ee94e796ac258d1c61caaa (diff) | |
download | rneovim-f6d4bfd51bb68d84bfc265fa973ea75978ecf304.tar.gz rneovim-f6d4bfd51bb68d84bfc265fa973ea75978ecf304.tar.bz2 rneovim-f6d4bfd51bb68d84bfc265fa973ea75978ecf304.zip |
Merge PR #2164 'Small changes to ui_busy functions and testing'
Diffstat (limited to 'test/functional/ui')
-rw-r--r-- | test/functional/ui/screen.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index 7ba90abde2..2cebaf048c 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -417,7 +417,7 @@ function Screen:_row_repr(row, attr_ids, attr_ignore) table.insert(rv, '{' .. attr_id .. ':') current_attr_id = attr_id end - if self._rows[self._cursor.row] == row and self._cursor.col == i then + if not self._busy and self._rows[self._cursor.row] == row and self._cursor.col == i then table.insert(rv, '^') end table.insert(rv, row[i].text) |