How to Implement Tab Completion

二次信任 提交于 2019-12-03 11:00:53

问题


I'm trying to figure out how to implement tab completion for subcommands in a C++ application. I would like it to function much like Git's tab completion. I'm trolling through Git's source, but it's not jumping out at me.

I've searched for ways to implement tab completion and haven't found a straight-forward answer, so I'm guessing it might not necessarily be a feature each individual application has to implement. Is tab completion a feature of the particular shell the application is being executed from? What are the basics I need to know about getting my application to support tab completion (particularly in C++)?


回答1:


The question was answered in the comments.

Is tab completion a feature of the particular shell the application is being executed from?

yes

What are the basics I need to know about getting my application to support tab completion (particularly in C++)?

basically learn more about bash-completion




回答2:


I've searched for ways to implement tab completion and haven't found a straight-forward answer

Look here. This should give you a pretty good starting point.

What are the basics I need to know about getting my application to support tab completion

You should be familiar with Trie data structure, as this is the common data structure used to implement tab completion. There are lots of tutorials explaining it online, look it up.

Pseudo-code (given a list of strings):

First, store each of the string's letters in the Trie data structure.

when the user hit tab key:

(GeeksForGeeks) Given a query prefix, we search for all words having this query.

  1. Search for given query using standard Trie search algorithm.
  2. If query prefix itself is not present, return -1 to indicate the same.
  3. If query is present and is end of word in Trie, print query. This can quickly checked by seeing if last matching node has isEndWord flag set. We use this flag in Trie to mark end of word nodes for purpose of searching.
  4. If last matching node of query has no children, return.
  5. Else recursively print all nodes under subtree of last matching node.


来源:https://stackoverflow.com/questions/5255372/how-to-implement-tab-completion

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!