Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
119 views
in Technique[技术] by (71.8m points)

Vim's :open does not tab complete, what does?

Instead of tab completed file or directory names, I see ^I

:open ./lib/^I^I^I

Is there another command that would offer tab completion, or perhaps another solution?

I'm considering replacing the following mapping with something that would use buffers, but want to keep tab completion.

map <C-O> :tabnew ./
question from:https://stackoverflow.com/questions/17326627/vims-open-does-not-tab-complete-what-does

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

That might be because :open is not the command you're looking for. Try :edit or :e for short. Also try :help :open and :help :e to see, what the commands do. :e has tab completion.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...