mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
8 lines
111 B
Bash
Executable File
8 lines
111 B
Bash
Executable File
#!/usr/bin/env bash
|
|
file="$(rg $@ | fzf -0 -1 | awk -F: '{print $1}')"
|
|
|
|
if [[ -n $file ]]
|
|
then
|
|
vim $file
|
|
fi
|