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