Merge #12155 ':ls filter by terminal, lastused'

This commit is contained in:
Justin M. Keyes
2020-04-26 23:57:37 -04:00
committed by GitHub
19 changed files with 257 additions and 48 deletions

View File

@@ -650,6 +650,11 @@ Buffer terminal_buf(const Terminal *term)
return term->buf_handle;
}
bool terminal_running(const Terminal *term)
{
return !term->closed;
}
// }}}
// libvterm callbacks {{{