aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2021-11-20 18:49:46 +0900
committernsfisis <nsfisis@gmail.com>2021-11-20 18:49:46 +0900
commit203190395fd4a253b14f32e7f1814d23103e1769 (patch)
tree75a0e153f46dc7b5777e3588cb602a0effeaf761
parent19aa195280459fa83fc4a518e24197670b2d1712 (diff)
downloaddotfiles-203190395fd4a253b14f32e7f1814d23103e1769.tar.gz
dotfiles-203190395fd4a253b14f32e7f1814d23103e1769.tar.zst
dotfiles-203190395fd4a253b14f32e7f1814d23103e1769.zip
vim: change popup win's border
-rw-r--r--.vimrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/.vimrc b/.vimrc
index f94557e..70078d1 100644
--- a/.vimrc
+++ b/.vimrc
@@ -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,