Conversation
Update:The For testing: git clone -b feature/command_completion_command https://github.com/nimrod-a/mvt.git \
&& cd mvt \
&& python3 -m venv .venv && source .venv/bin/activate \
&& pip install . \
&& mvt-ios shell-completion # or mvt-androidThen reopen the terminal or run a new with It works by:
It should not slow down shell responsiveness as much as the |
|
I am happy to review that when it is done (and when I will have time, may take a week or two). One question we may have is do we want to have another dependency for that feature? and is this library going to be maintained if it was forked just for this project? |
|
Hey! Sorry for the late reply. You / @roaree & @DonnchaC probably know better then me if having another dependency is worth it for the feature. I can say that for me as a beginner MVT user it was quite useful. Regrading maintenance of the library: since quick-click-auto has no 3rd party dependencies besides |
This PR is a WIP to add a
shell-completioncommand to mvt-ios and mvt-android.As discussed in #589, there is currently no suitable library to implement this feature without substantial performance impact.
I have therefor created a modified fork of the most popular click autocomplete library (auto-click-auto), which I named quick-click-auto.
You can read more about it here
It still needs some working on, but will hopefully do its job in the near future. I will give an update once I have done some more testing!