Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cljoly/telescope-repo.nvim
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: cljoly/telescope-repo.nvim
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: win-fix
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 11 commits
  • 8 files changed
  • 3 contributors

Commits on Aug 7, 2022

  1. fix: pass down the opts to the second prompts

    Before this patch, the “global” options passed to the Telescope command
    were not passed down to the second prompt (the one selecting the files
    for instance). This would cause a change of layout set like so:
    
    ```
    :Telescope repo list layout_strategy=center
    ```
    
    not to be applied to the second prompt.
    
    This patch fixes that and correctly passes the options down to the
    second prompt.
    
    Related to #44 (might fix it)
    cljoly committed Aug 7, 2022
    Configuration menu
    Copy the full SHA
    91fe52d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #45 from cljoly/pass-down-opts

    fix: pass down the opts to the second prompts
    cljoly authored Aug 7, 2022
    Configuration menu
    Copy the full SHA
    fb61acb View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2022

  1. fix: the second picker couldn't open any file

    Due to options being changed for the first picker (in particular, a
    custom formatter is set), the second picker was unable to open any file,
    it would only point to folders.
    
    This commit fixes this behavior by passing down only the user options to
    the second picker, along with the ones specifically needed by it.
    
    Fixes #46
    cljoly committed Aug 16, 2022
    Configuration menu
    Copy the full SHA
    95ffb46 View commit details
    Browse the repository at this point in the history
  2. style: run stylua

    cljoly committed Aug 16, 2022
    Configuration menu
    Copy the full SHA
    e5da73d View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2022

  1. chore: update stylua in CI

    The old version is too different from my local one, causing the CI to
    fail.
    cljoly committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    3eaadf6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #49 from cljoly/ci-update

    CI Update
    cljoly authored Oct 14, 2022
    Configuration menu
    Copy the full SHA
    96367e3 View commit details
    Browse the repository at this point in the history
  3. feat: add a setting to switch to the project directory

    Switch to an opened project directory, in each window and for the
    corresponding file.
    
    Fixes #8
    cljoly committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    b22a370 View commit details
    Browse the repository at this point in the history
  4. docs: Start to require nvim 0.7

    The autocommand Lua API requires at least version 0.6. At the time of
    writing, telescope requires nvim 0.7.
    cljoly committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    204cc63 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #48 from cljoly/autocmd

    Add automatic cd to projecte directories
    cljoly authored Oct 14, 2022
    Configuration menu
    Copy the full SHA
    8a2e99e View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2022

  1. feat: detect bat on a wider variety of systems

    Some debian-based systems use put `bat` under `/usr/bin/batcat`. We thus
    need a to look for `batcat` as well.
    
    Fixes #47
    
    [1]: https://packages.debian.org/bullseye/amd64/bat/filelist, https://web.archive.org/web/20221016131458/https://packages.debian.org/bullseye/amd64/bat/filelist
    cljoly committed Oct 16, 2022
    Configuration menu
    Copy the full SHA
    2b4ad95 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2022

  1. Add an option to easily support PowerShell

    Co-authored-by: Clément Joly <[email protected]>
    hinogi and cljoly committed Dec 18, 2022
    Configuration menu
    Copy the full SHA
    f0e50ad View commit details
    Browse the repository at this point in the history
Loading