Vim's Arglist as a File-Centric Todo List | Chris Toomey

PHOTO EMBED

Thu Jul 16 2020 10:37:37 GMT+0000 (Coordinated Universal Time)

Saved by @nolboo

function! s:ThankYouNext() abort
  update
  argdelete %
  bdelete
  if !empty(argv())
    argument
  endif
endfunction

command! ThankYouNext call <sid>ThankYouNext()
content_copyCOPY

https://ctoomey.com/writing/using-vims-arglist-as-a-todo-list/