Skip to content

Releases: dlvhdr/gh-dash

gh-dash 3.4.2

09 Oct 14:08
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.4.1...v3.4.2

gh-dash 3.4.1

30 Sep 17:55
Compare
Choose a tag to compare

Full Changelog: v3.4.0...v3.4.1

gh-dash 3.4.0

27 Sep 14:20
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.3.0...v3.4.0

gh-dash 3.3.0

10 Sep 14:49
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.2.0...v3.3.0

gh-dash 3.2.0

22 Jul 14:14
3ac7458
Compare
Choose a tag to compare

What's Changed

Theme support

Thanks @itspngu for contributing this! ❀️
See the new section in the README for details on how to customize your theme.

Ad hoc search

  • New search tab! You can now create a new search query in a dedicated tab.
  • Modifying existing sections queries

Commits

New Contributors

Full Changelog: v3.1.4...v3.2.0

gh-dash 3.1.4

09 Jun 18:24
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.1.3...v3.1.4

v3.1.3

02 Jun 12:00
Compare
Choose a tag to compare

v3.1.3

v3.1.2

28 May 12:13
Compare
Choose a tag to compare

v3.1.2

v3.1.1

27 May 20:23
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.1.0...v3.1.1

v3.1.0 - keybindings support, repo paths ⌨️

15 May 11:28
67f77e8
Compare
Choose a tag to compare

Keybindings for PRs

Run any bash command using Go Templates to embed the current PR data.
Example of opening Neovim and VSCode for PR review:

keybindings:
  prs:
    - key: c
      command: >
        tmux new-window -c {{.RepoPath}} '
          gh pr checkout {{.PrNumber}} &&
          nvim -c ":DiffviewOpen master...{{.HeadRefName}}"
        '
    - key: v
      command: >
        cd {{.RepoPath}} &&
        code . &&
        gh pr checkout {{.PrNumber}}

Repo paths

Specify where each repo is located on disk for use with keybindings:
Access using the {{.RepoPath}} template string.

repoPaths:
  dlvhdr/gh-dash: ~/code/gh-dash