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(help_tags): show help tags on windows (#3126) #3127

Merged
merged 2 commits into from
May 26, 2024

Commits on May 21, 2024

  1. fix(help_tags): show help tags on windows (nvim-telescope#3126)

    On Windows, `builtin.help_tags` picker does not show any help tags.
    
    To fix this, the following changes are needed:
    
    1. `util.path_tail` checks unix separator `/` on Windows and leave the
    original implementation intact on unix systems.
    
    2. Line endings should be taken carefully on Windows. `vim.split` with
       only newline `\n` character as separator may result in unexpected
       crash when parsing large files. When splits on lines are needed, call
       it with `\r?\n`, or even set up a wrapper function in utils is more
       prefered.
    
    Fixes nvim-telescope#3126
    xudyang1 committed May 21, 2024
    Configuration menu
    Copy the full SHA
    0d9a17d View commit details
    Browse the repository at this point in the history

Commits on May 26, 2024

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