hrsh7th / cmp-path

nvim-cmp source for path
MIT License
599 stars 55 forks source link

Paths containing colons break autocomplete #49

Open aryzing opened 2 years ago

aryzing commented 2 years ago

Whenver a path has a colon, cmp-path stops working.

For example, given a log file in ./my/path/2022-08-22T10:00/log.txt, autocomplete will suggest every part of the path except log.txt,


INPUT                        SUGGESTION
./|                          -> my/
./my/|                       -> path/
./my/path/|                  -> 2022-08-22T10:00/
./my/path/2022-08-22T10:00/| -> (no suggestions from cmp-path)