diff options
| author | nsfisis <nsfisis@gmail.com> | 2021-11-20 18:49:46 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2021-11-20 18:49:46 +0900 |
| commit | 203190395fd4a253b14f32e7f1814d23103e1769 (patch) | |
| tree | 75a0e153f46dc7b5777e3588cb602a0effeaf761 | |
| parent | 19aa195280459fa83fc4a518e24197670b2d1712 (diff) | |
| download | dotfiles-203190395fd4a253b14f32e7f1814d23103e1769.tar.gz dotfiles-203190395fd4a253b14f32e7f1814d23103e1769.tar.zst dotfiles-203190395fd4a253b14f32e7f1814d23103e1769.zip | |
vim: change popup win's border
| -rw-r--r-- | .vimrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -873,12 +873,12 @@ function! s:choose_window_interactively() abort let indicator = indicators[i] let [winy, winx, winh, winw] = s:win_getrect(winid) let popup = popup_create(indicator, #{ - \ line: winy + (winh - 5) / 2, - \ col: winx + (winw - 9) / 2, + \ line: winy + (winh - 3) / 2, + \ col: winx + (winw - 7) / 2, \ drag: v:false, \ resize: v:false, \ padding: [1, 3, 1, 3], - \ border: [], + \ border: [0, 0, 0, 0], \ }) call add(popups, #{ \ winid: popup, |
