Skip to content

Commit 2fd05c8

Browse files
authored
Merge pull request #74 from qiushihao/master
Fix #64
2 parents 1e03ea7 + 88f560b commit 2fd05c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

autoload/quickui/tools.vim

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@
1414
" list buffer ids
1515
"----------------------------------------------------------------------
1616
function! s:buffer_list()
17+
let l:ls_cli = get(g:, 'quickui_buffer_list_cli', 'ls t')
1718
redir => buflist
18-
silent! ls
19+
silent execute l:ls_cli
1920
redir END
2021
let bids = []
2122
for curline in split(buflist, '\n')

0 commit comments

Comments
 (0)