diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-02-03 22:17:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-03 22:17:28 +0100 |
commit | da88278f2786d85565e6e2a163709266e4c46232 (patch) | |
tree | ac64b16602015def0982ea9a5da9e34bcfb04576 /src | |
parent | 08155e2b53cdb0e2af72f347d9bb464ea0edab5e (diff) | |
parent | 81ac8e9015142fb539ad888651130f6a0ab0b27a (diff) | |
download | rneovim-da88278f2786d85565e6e2a163709266e4c46232.tar.gz rneovim-da88278f2786d85565e6e2a163709266e4c46232.tar.bz2 rneovim-da88278f2786d85565e6e2a163709266e4c46232.zip |
Merge pull request #9579 from bfredl/pum_fix
popupmenu: fix alignment of kind and extra after #9530
Diffstat (limited to 'src')
-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 40f62b437c..9b09006b5f 100644 --- a/src/nvim/popupmnu.c +++ b/src/nvim/popupmnu.c @@ -517,7 +517,7 @@ void pum_redraw(void) } else { grid_fill(&pum_grid, row, row + 1, col, col_off + pum_base_width + n, ' ', ' ', attr); - col = pum_base_width + n; + col = col_off + pum_base_width + n; } totwidth = pum_base_width + n; } |