telescope
style search with ripgrep#
# search file by content, open in vscode
function sg() {
# Check if we have at least one argument
if [[ $# -gt 0 ]]; then
# The search pattern is the first argument
local PATTERN="$1"
shift # Remove the search pattern from the argument list
else
# If no arguments were provided, use an empty string as the pattern
local PATTERN=""
fi
# The rest of the arguments are for rg
local RG_ARGS=("$@")
# Run rg with the provided arguments, followed by fzf and the preview tool
rg --color=always --line-number --no-heading --smart-case "${RG_ARGS[@]}" "${PATTERN}" | fzf --ansi \
--color "hl:-1:underline,hl+:-1:underline:reverse" \
--delimiter : \
--preview 'bat --color=always {1} --highlight-line {2}' \
--preview-window '+{2}+3/3,~3' | cut -d ':' -f1-2 | xargs -I {} code -r -g {}
}