diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-08-08 17:36:54 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-09-26 12:19:54 +0200 |
commit | 392c658d4d0f9457f143748adf98ecd4cdc8dc85 (patch) | |
tree | 187943b860e19c66dbdd898661d67274c55e983f /src/nvim/popupmnu.c | |
parent | b3b02eb52943fdc8ba74af3b485e9d11655bc9c9 (diff) | |
download | rneovim-392c658d4d0f9457f143748adf98ecd4cdc8dc85.tar.gz rneovim-392c658d4d0f9457f143748adf98ecd4cdc8dc85.tar.bz2 rneovim-392c658d4d0f9457f143748adf98ecd4cdc8dc85.zip |
feat(decorations): support virtual lines (for now: only one block at a time)
Diffstat (limited to 'src/nvim/popupmnu.c')
-rw-r--r-- | src/nvim/popupmnu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/popupmnu.c b/src/nvim/popupmnu.c index aeb2c8c44a..606c03f838 100644 --- a/src/nvim/popupmnu.c +++ b/src/nvim/popupmnu.c @@ -514,7 +514,7 @@ void pum_redraw(void) char_u saved = *p; *p = NUL; - st = (char_u *)transstr((const char *)s); + st = (char_u *)transstr((const char *)s, true); *p = saved; if (pum_rl) { |