prompt-toolkit / python-prompt-toolkit

Library for building powerful interactive command line applications in Python
https://python-prompt-toolkit.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
9.11k stars 718 forks source link

Partial suggestion filling for path parts #1722

Closed LoicGrobol closed 8 months ago

LoicGrobol commented 1 year ago

This makes the ctrl+right partial suggestion filling take into account path parts, as it does in fish. To be precise, if the user has typed python /home/l and has been shown the suggestion python /home/lgrobol/test.py, hitting ctrl+right will only partial fill up to python /home/lgrobol/ instead of python /home/lgrobol/test.py (current behaviour).

jonathanslenders commented 8 months ago

Thanks!