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

Enable full path specifications for NERDTreeIgnore #1207

Merged
merged 6 commits into from
Jan 20, 2021
Merged

Commits on Jan 18, 2021

  1. Add ability to specify a path to be ignored.

    This ignore expression compares itself against the whole path of the
    node, instead of just the tail component of the node.
    PhilRunninger committed Jan 18, 2021
    Configuration menu
    Copy the full SHA
    be92358 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bcf1777 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2021

  1. Restore the original self.str() to get OS-specific paths for comparing.

    Using the UI-formatted path had two problems.
    1. It always appended a forward slash at the end of the path, which was
       unnecessary and made patterns like '/tmp/cache$[[path]]' not work as
       expected.
    2. It always used forward slashes to join the path components. I thought
       this would be a good thing, but there's no reason to force Windows
       users to use that syntax. They'll just need to remember to escape the
       backslashes, like so: '\\Temp\\cache$[[path]]'
    PhilRunninger committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    4afb62e View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2021

  1. Configuration menu
    Copy the full SHA
    2052f2b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    848c9cc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7b91d55 View commit details
    Browse the repository at this point in the history