Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tab completion for filename contains literal wildcard character #7407

Closed
wants to merge 10 commits into from

Commits on Jul 30, 2018

  1. [Feature] Fix file completion with literal wildcard char

    *System.Management.Automation/engine/CommandCompletion/CompletionCompleters:
    Use WildcardPattern::Escape to escape completion text of filename.
    
    *System.Management.Automation/engine/regex:
    WildcardPattern::Escape should also escape "`" since
    WildcardPattern::Unescape would unescape it,
    and the matcher parse it as escape character.
    
    *System.Management.Automation/namespaces/LocationGlobber:
    Do not pass regex escaped string to WildcardPattern::Get. This fails
    tab completion when doing "./path/to/`[f"<TAB>.
    kwkam committed Jul 30, 2018
    Copy the full SHA
    931f073 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2018

  1. Copy the full SHA
    b8ce02f View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    27cd737 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2019

  1. Copy the full SHA
    7ab5699 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2019

  1. Copy the full SHA
    c710d39 View commit details
    Browse the repository at this point in the history
  2. Update for ExperimentalFeature

    kwkam committed Mar 6, 2019
    Copy the full SHA
    40fd00a View commit details
    Browse the repository at this point in the history

Commits on May 8, 2019

  1. Copy the full SHA
    98086fc View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2019

  1. Add copyright header

    kwkam committed Jun 22, 2019
    Copy the full SHA
    8b8c2ed View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2019

  1. Insert blank line after header

    Co-Authored-By: Ilya <darpa@yandex.ru>
    kwkam and iSazonov committed Jun 24, 2019
    Copy the full SHA
    811b574 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2020

  1. Copy the full SHA
    a09ac29 View commit details
    Browse the repository at this point in the history