rpigott
59c5c4f006
test: popupmenu placement
2018-09-13 00:27:42 +02:00
Justin M. Keyes
90519107f2
Merge #8921 'highlight: Fix after-EOL matches at cursor'
2018-09-04 07:05:20 +02:00
Ricky Zhou
2694fa759f
Add tests for highlighting after the end of a line.
2018-09-03 03:13:03 -07:00
Björn Linse
74937589d0
screen.lua: extend snapshot_util() to work with extension state
...
Simplify handling of attributes: collect new attributes in the same pass
as screen lines are rendered, instead of using two passes.
2018-09-03 10:36:55 +02:00
Björn Linse
3d88287e30
tests: introduce screen:expect{...} form
2018-08-27 15:15:49 +02:00
Björn Linse
fa4c260100
cursor_shape: use attribute ids instead of syntax ids
...
As attribute ids is the convention in the UI protocol
Also remove non-threadsafe calls in tui.c to syntax module.
2018-08-13 13:35:35 +02:00
Björn Linse
9a584773b5
screen.c: add update_window_hl to special redrawing entrypoints
...
The following (run as a script) used to cause a crash due to :sign using a
special redraw (not updating nvim's specific highlight data structures)
without proper redraw first, as split just flags for redraw later.
set cursorline
sign define piet text=>> texthl=Search
split
sign place 3 line=2 name=piet buffer=1
2018-07-27 17:11:01 +02:00
Björn Linse
11861bc9c8
tests: add test for switching tabpage right after scroll
2018-07-24 16:37:48 +02:00
Björn Linse
d183103b45
test: assert scroll region state for clear
...
some clients assume this, so tests should check it
2018-07-24 16:37:04 +02:00
Björn Linse
ed5ac84ab0
tests: test for redrawing tabline when msgsep marker goes outside screen
2018-07-24 16:36:20 +02:00
Björn Linse
6b8cd827a9
ui: add tests for hlstate extension
2018-07-21 13:21:59 +02:00
Björn Linse
1adb01c120
ui: use line-based rather than char-based updates in screen.c
...
Add ext_newgrid and ext_hlstate extensions. These use predefined
highlights and line-segment based updates, for efficiency and
simplicity.. The ext_hlstate extension in addition allows semantic
identification of builtin and syntax highlights.
Reimplement the old char-based updates in the remote UI layer, for
compatibility. For the moment, this is still the default. The bulitin
TUI uses the new line-based protocol.
cmdline uses curwin cursor position when ext_cmdline is active.
2018-07-21 13:21:58 +02:00
Björn Linse
989b585e10
highlight: refactor to use stateful representation
...
This allows us to keep track of the source higlight groups,
and not only the final combined highlights.
2018-07-21 13:20:37 +02:00
Björn Linse
56065bbdc6
Merge pull request #8721 from bfredl/quickresize
...
Fix redrawing issues with narrow screen and remove extra wait in resize tests
2018-07-12 12:21:11 +02:00
Björn Linse
e51bffefa5
screen: truncate showmode messages
...
Before this, bottom of screen got messed up when modemsg (+ one extra
space to not force terminal scroll) didn't fit on one line.
2018-07-12 10:27:23 +02:00
Björn Linse
38f0ac07b5
tests/screen.lua: treat "resize" like any other event
...
Saves ~10 seconds in UI tests
2018-07-11 12:57:01 +02:00
Michael Hoffmann
0ed8b12a07
transstr_buf: fix length comparison #8681
...
closes #8466
closes #8664
Regression by 0d7daaad98
.
- Fix length comparison.
- Fix loop(s) which iterated over all fields of array `pcc` even if it
was not filled up (try unicode 0x9f as statusline character).
Note about the tests:
- To input unicode with more than two hex digits you can use <C-v>U...:
a + U+fe20: a︠
a + U+fe20 + U+fe21: a︠︡
2018-07-10 21:57:26 +02:00
Yichao Zhou
12481781a0
highlight: high-priority CursorLine if fg is set. #8578
...
closes #7383
closes #7715
This implements the compromise described in #7383 :
* low-priority CursorLine if foreground is not set
* high-priority ("same as Vim" priority) CursorLine if foreground is set
ref d1874ab282
ref 56eda2aa17
2018-06-28 01:49:40 +02:00
Justin M. Keyes
b7514493a0
defaults: shortmess+=F ( #8619 )
...
Because we default to laststatus=2 (statusline is always visible), the
:edit message is not useful.
ref #6289
2018-06-22 08:18:02 +02:00
Jan Edmund Lazo
8192267dea
vim-patch:8.0.0609: some people still don't know how to quit ( #8571 )
...
Problem: For some people the hint about quitting is not sufficient.
Solution: Put <Enter> separately. Also use ":qa!" to get out even when
there are changes.
28a8193e31
2018-06-17 12:51:03 +02:00
James McCoy
6c0f1903e6
functionaltest: Use octal escapes for printf
...
According to POSIX[0], only octal escapes are supported by the printf
command. GNU coreutils' printf and some shells' builtin printf versions
which support hex escapes, but dash and non-GNU printf do not.
[0]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/printf.html
2018-06-13 23:03:37 -04:00
Björn Linse
050f3975f6
options: remove 'maxcombine` option (always use 6)
2018-06-13 10:11:35 +02:00
Björn Linse
315b7f8632
test/ui: doublewidth rendering. multibyte and cmdwin chars in folded lines ( #8534 )
2018-06-12 17:57:47 +02:00
Björn Linse
1efe65a155
ex_getln: don't redraw statusline on top of scrolled messages
2018-06-02 09:39:39 +02:00
Alexander Karle
39a03c0fe7
wildmenu: close before redrawing statusline ( #8453 )
...
Fixes #8385
2018-06-02 00:22:53 +02:00
Justin M. Keyes
3de81ea351
test: inccommand_spec: retry unreliable test ( #8311 )
2018-05-18 19:41:14 +02:00
raichoo
3a6b80f2f4
UI: redraw statusline when entering cmdline ( #8347 )
2018-05-10 14:55:07 +02:00
James McCoy
5009317525
Merge pull request #8358 from mhinz/screen
...
[RFC] screen: avoid artifacts
2018-05-04 19:42:58 -04:00
Marco Hinz
ec1a7791b0
test: screen artifacts
2018-05-04 22:14:27 +02:00
Björn Linse
0d037ad978
messages: redraw tabline if it was overdrawn by messages
...
fixes #8354
Regression from #8088 , where we try to avoid clearing the screen
if not absolutely necessary
2018-05-04 09:15:19 +02:00
Justin M. Keyes
d05712fbe7
inccommand: pause :terminal redraws ( #8307 )
...
fix #5584
2018-04-22 12:26:16 +02:00
Nimit Bhardwaj
51af911a27
inccommand: do not execute trailing commands #8256
...
fix #7494
2018-04-21 13:06:46 +02:00
Justin M. Keyes
fe5f38d8bd
terminal: do not call redraw_buf_later() ( #8306 )
...
fixes #8290
2018-04-21 04:11:45 +02:00
geekodour
1e71978cf0
events: VimSuspend, VimResume #8280
...
closes #3648
ref #5959
2018-04-15 15:05:02 +02:00
Justin M. Keyes
87f4d2592c
test/util: expect_err() ( #8257 )
...
other cleanup, ref #8245
2018-04-11 22:07:00 +02:00
Justin M. Keyes
fa6415f13f
test/API: validate channel arg ( #8245 )
2018-04-08 03:01:15 +02:00
Björn Linse
60e96a45b4
screen: winhl=Normal:Background should not override syntax ( #8093 )
...
fixes #7375
2018-04-02 14:21:14 +02:00
Björn Linse
98e7112390
msg: do not scroll entire screen ( #8088 )
2018-03-31 11:12:27 +02:00
Nimit Bhardwaj
8d5a46e77b
TUI: implement "standout" attribute #8081
...
closes #8054
2018-03-27 04:38:19 +02:00
ZyX
79b4b6fc86
*: Make sure that !did_throw implies !current_exception
...
Fixes #7876
2018-03-25 14:50:48 +03:00
Justin M. Keyes
fd4021387e
test: rename next_message() to next_msg()
2018-03-11 12:43:42 +01:00
Björn Linse
cee9a8ce8a
message: don't output unprintable chars to screen
...
fixes #7586 #8070
2018-03-04 08:37:57 +01:00
Matthieu Coudron
384a39479a
'fillchars': fix defaults logic; handle ambiwidth=double #7986
...
Update tests.
2018-02-23 00:48:35 +01:00
Jan Edmund Lazo
795da343bb
test: win: emulate yes with for loop
2018-02-19 07:10:46 -05:00
Jan Edmund Lazo
07dfe0f5ea
test: win: enable ui/wildmode_spec.lua
2018-02-19 07:10:46 -05:00
Björn Linse
77286915a8
Merge pull request #8008 from bfredl/arrayfree
...
ex_getln: clear cmdline_block after it's freed
2018-02-14 19:23:11 +01:00
Björn Linse
d9497053e8
ex_getln: clear cmdline_block after it's freed
2018-02-14 19:20:28 +01:00
Björn Linse
6e5cb0debd
ui: refactor ui options
2018-02-13 20:48:51 +01:00
Justin M. Keyes
2cfc1b055b
Merge #7939 "fix crash: 'spell' and long lines"
2018-02-11 13:04:39 +01:00
Justin M. Keyes
ed0d135247
Merge #7939 "fix crash: 'spell' and long lines"
...
closes #7937
2018-02-11 13:03:24 +01:00