Skip to content

Instantly share code, notes, and snippets.

@kaimingguo
Created March 2, 2025 14:20
Show Gist options
  • Save kaimingguo/f401c467608b8953f15970da27439754 to your computer and use it in GitHub Desktop.
Save kaimingguo/f401c467608b8953f15970da27439754 to your computer and use it in GitHub Desktop.
Search Project TODOs with fzf
rg --color=always --line-number "TODO|FIXME|XXX|HACK|BUG|NOTE" | \
fzf --ansi \
    --delimiter : \
    --preview 'bat --style=numbers --color=always --highlight-line {2} {1}' \
    --preview-window '+{2}-/2'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment