Completion Predict Symbol
TIP
- Due to changes in Windows Terminal, 😄🤔😎 cannot be displayed properly in the completion menu, so they will be replaced.
- Related issue: https://github.com/microsoft/terminal/issues/18242
- New symbols:
~,?,!
For completions added by
psc add, they will have completion predict symbol after the completion item.- They are used to let you know in advance if completions are available before you press the
Tabkey. - They can be customized by running
psc menu symbol <type> <symbol> - For example, you can replace them with empty strings to hide them.
psc menu symbol SpaceTab ""psc menu symbol OptionTab ""psc menu symbol WriteSpaceTab ""
- They are used to let you know in advance if completions are available before you press the
~,?,!: If there are multiple, you can choose the effect of one of them.~: It means that after you apply it, you can pressTabkey to continue to get completions.?: It means that after you apply the option completion, you can pressTabkey to continue to get current list of completion items.!: It means that after you apply the option completion, you should enter a string, then pressTabkey to continue to get current list of completion items.- If the string has spaces, please use
"or'to wrap it. e.g."test content" - If there's also
~, it means that there's some preset completions, you can pressTabkey to continue to get them without entering a string.
- If the string has spaces, please use