@@ -142,6 +142,8 @@ call s:set_plugin_global_option('any_jump_disable_vcs_ignore', v:false)
142142" default is: ['*.tmp', '*.temp']
143143call s: set_plugin_global_option (' any_jump_ignored_files' , [' *.tmp' , ' *.temp' ])
144144
145+ call s: set_plugin_global_option (' any_jump_neovim_border' , [' ╭' , ' ╮' ,' ╰' , ' ╯' , ' ─' , ' │' ])
146+
145147" ----------------------------------------------
146148" Public customization methods
147149" ----------------------------------------------
@@ -213,9 +215,10 @@ fu! s:CreateNvimUi(internal_buffer) abort
213215 \ ' style' : ' minimal' ,
214216 \ }
215217
216- let top = ' ╭' . repeat (' ─' , width - 2 ) . ' ╮'
217- let mid = ' │' . repeat (' ' , width - 2 ) . ' │'
218- let bot = ' ╰' . repeat (' ─' , width - 2 ) . ' ╯'
218+ let [topleft_b, topright_b, botleft_b, botright_b, horizontal_b, vertical_b] = g: any_jump_neovim_border
219+ let top = topleft_b . repeat (horizontal_b, width - 2 ) . topright_b
220+ let mid = vertical_b . repeat (' ' , width - 2 ) . vertical_b
221+ let bot = botleft_b . repeat (horizontal_b, width - 2 ) . botright_b
219222 let lines = [top ] + repeat ([mid], height - 2 ) + [bot]
220223 let s: border_buf = nvim_create_buf (0 , 1 )
221224 call nvim_buf_set_lines (s: border_buf , 0 , -1 , v: true , lines )
0 commit comments