mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
14 lines
185 B
Text
14 lines
185 B
Text
|
|
#!/bin/sh
|
||
|
|
if [ -z "$1" ]; then
|
||
|
|
SCRIPT=$(find . -type f | fzfse)
|
||
|
|
else
|
||
|
|
SCRIPT="$1"
|
||
|
|
fi
|
||
|
|
|
||
|
|
if [ -z "$SCRIPT" ]; then
|
||
|
|
echo 'Usage: edsc [file]'
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
emacsclient -c -nw "$SCRIPT"
|