mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
vim: remove unnecessary buffer queue
Vim handles the buffers just fine: when one is deleted, we go to the previous one. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
parent
2c3623703f
commit
062a73b931
1 changed files with 2 additions and 10 deletions
|
@ -65,7 +65,6 @@ function! s:new_file_buffer(type, fname)
|
|||
execute printf('set filetype=notmuch-%s', a:type)
|
||||
execute printf('set syntax=notmuch-%s', a:type)
|
||||
ruby $curbuf.init(VIM::evaluate('a:type'))
|
||||
ruby $buf_queue.push($curbuf.number)
|
||||
endfunction
|
||||
|
||||
function! s:compose_unload()
|
||||
|
@ -268,13 +267,8 @@ endfunction
|
|||
|
||||
function! s:kill_this_buffer()
|
||||
ruby << EOF
|
||||
if $buf_queue.size > 1
|
||||
$curbuf.close
|
||||
VIM::command("bdelete!")
|
||||
$buf_queue.pop
|
||||
b = $buf_queue.last
|
||||
VIM::command("buffer #{b}") if b
|
||||
end
|
||||
EOF
|
||||
endfunction
|
||||
|
||||
|
@ -293,7 +287,6 @@ function! s:new_buffer(type)
|
|||
execute printf('set filetype=notmuch-%s', a:type)
|
||||
execute printf('set syntax=notmuch-%s', a:type)
|
||||
ruby $curbuf.init(VIM::evaluate('a:type'))
|
||||
ruby $buf_queue.push($curbuf.number)
|
||||
endfunction
|
||||
|
||||
function! s:set_menu_buffer()
|
||||
|
@ -471,7 +464,6 @@ ruby << EOF
|
|||
$db_name = nil
|
||||
$email = $email_name = $email_address = nil
|
||||
$searches = []
|
||||
$buf_queue = []
|
||||
$threads = []
|
||||
$messages = []
|
||||
$config = {}
|
||||
|
|
Loading…
Reference in a new issue