MRU tracking is now done dynamically as buffers come and go, so there is
no need to track buffers at plugin startup or session-load time.
- Issue #8 "Bufexplorer MRU sort doesn't work properly if using
restore_session.vim" was caused by resetting the MRU list via
`s:Reset()` after a session is loaded. Removing the `SessionLoadPost`
autocmd that invokes this function resolves this issue.
- Issue #87 "Bufexplorer interferes with the startinsert! command" was
caused, as correctly diagnosed by the original poster, by the use of
`:normal!` in the `s:CatalogBuffers()` function:
```vim
silent execute 'normal! ' . tab . 'gt'
```
`s:CatalogBuffers()` is no longer called at startup, resolving this
issue.