xolox / vim-session

Extended session management for Vim (:mksession on steroids)
http://peterodding.com/code/vim/session/
961 stars 80 forks source link

Auto completion seems wrong #135

Closed Ploppz closed 8 years ago

Ploppz commented 8 years ago

I have two sessions, physics and graphic. When I write :OpenSession ph and press TAB, it auto completes as graphic.

Cypher1 commented 8 years ago

I think this is a vim completion thing not vim-session. Vim is seeing the ph in graphic (graphic comes before physics in a sorted list).

I'd recommend looking up other fuzzy finders (like fzf) or maybe just typing phy.

Good luck

Ploppz commented 8 years ago

Alright, thanks.