Skip to content

Commit

Permalink
[NFC] Add circt copy of upstream's linkify. (#7521)
Browse files Browse the repository at this point in the history
  • Loading branch information
dtzSiFive authored Aug 15, 2024
1 parent 8cd116d commit 3b9ceef
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions utils/linkify.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/bin/sh

# This script linkifies (i.e. makes clickable in the terminal) text that appears
# to be a pull request or issue reference (e.g. #12345 or PR12345) or a
# 40-character commit hash (e.g. abc123). You can configure git to automatically
# send the output of commands that pipe their output through a pager, such as
# `git log` and `git show`, through this script by running this command from
# within your CIRCT checkout:
#
# git config core.pager 'utils/linkify.sh | pager'
#
# Consider:
#
# git config core.pager 'utils/linkify.sh | ${PAGER:-less}'
#
# The pager command is run from the root of the repository even if the git
# command is run from a subdirectory, so the relative path should always work.
#
# It requires OSC 8 support in the terminal. For a list of compatible terminals,
# see https://github.com/Alhadis/OSC8-Adoption
#
# Copied from upstream LLVM's llvm/utils/git/linkify.

sed \
-e 's,\(#\|\bPR\)\([0-9]\+\),\x1b]8;;https://github.com/llvm/circt/issues/\2\x1b\\\0\x1b]8;;\x1b\\,gi' \
-e 's,[0-9a-f]\{40\},\x1b]8;;https://github.com/llvm/circt/commit/\0\x1b\\\0\x1b]8;;\x1b\\,g'

0 comments on commit 3b9ceef

Please sign in to comment.