Fix dictionary alignments

This commit is contained in:
Junegunn Choi
2025-06-08 10:51:25 +09:00
parent a2ed9fb885
commit 98dcd77a18

View File

@@ -1430,9 +1430,9 @@ function! fzf#vim#jumps(...)
let s:jump_current = pos let s:jump_current = pos
let current = -pos-1 let current = -pos-1
return s:fzf('jumps', { return s:fzf('jumps', {
\ 'source' : map(s:jumplist, 's:jump_format(v:val)'), \ 'source': map(s:jumplist, 's:jump_format(v:val)'),
\ 'sink*' : s:function('s:jump_sink'), \ 'sink*': s:function('s:jump_sink'),
\ 'options' : ['+m', '-x', '--ansi', '--tiebreak=index', '--cycle', '--scroll-off=999', '--sync', '--bind', 'start:pos('.current.')+offset-middle', '--tac', '--tiebreak=begin', '--prompt', 'Jumps> ', '--preview-window', '+{3}/2', '--tabstop=2', '--delimiter', '[:\s]+'], \ 'options': ['+m', '-x', '--ansi', '--tiebreak=index', '--cycle', '--scroll-off=999', '--sync', '--bind', 'start:pos('.current.')+offset-middle', '--tac', '--tiebreak=begin', '--prompt', 'Jumps> ', '--preview-window', '+{3}/2', '--tabstop=2', '--delimiter', '[:\s]+'],
\ }, a:000) \ }, a:000)
endfunction endfunction