8 lines
151 B
Text
8 lines
151 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# edit file: Uses fzy to locate a file, and opens it in your favorite text editor
|
||
|
# Takes arguments for `fd`
|
||
|
|
||
|
"$EDITOR" "$(fd $@ | fzy)"
|
||
|
|