helloSystem / Menu

Global menu bar written in Qt
43 stars 14 forks source link

Only initialize fs completer once. #145

Closed jsm222 closed 1 year ago

probonopd commented 1 year ago

Say, when you type /us, will it show /usr in the menu?

jsm222 commented 1 year ago

Say, when you type /us, will it show /usr in the menu?

Nope, you have to use the autocompleter for completion, in this implementation. If you want the other, we better just travese the filesystem with opendir and readdir or Qt equivalents ourselves.

probonopd commented 1 year ago

What I am trying to achieve is that when you type /us, it will show /usr in the menu. I could not get that to work. If you have an idea how to do that, I'd be grateful if you could show me.