taolf fzfgrep fix
This commit is contained in:
parent
1b22c5ab20
commit
daccf77ffa
1 changed files with 6 additions and 5 deletions
|
@ -26,8 +26,11 @@ cmd open ${{
|
||||||
|
|
||||||
cmd pushedit %{{
|
cmd pushedit %{{
|
||||||
set +u
|
set +u
|
||||||
echo "Open: " && read files
|
files=$1
|
||||||
echo
|
[ -z $files ] && {
|
||||||
|
echo "Open: " && read files
|
||||||
|
echo
|
||||||
|
}
|
||||||
echo $files | xargs -r touch
|
echo $files | xargs -r touch
|
||||||
if [ -n "$TAOLF" ]; then
|
if [ -n "$TAOLF" ]; then
|
||||||
lf -remote "send $id unselect
|
lf -remote "send $id unselect
|
||||||
|
@ -162,10 +165,8 @@ cmd fzfgrep ${{
|
||||||
row="$(echo "$res" | cut -d':' -f2)"
|
row="$(echo "$res" | cut -d':' -f2)"
|
||||||
column="$(echo "$res" | cut -d':' -f3)"
|
column="$(echo "$res" | cut -d':' -f3)"
|
||||||
if [ -n "$res" ]; then
|
if [ -n "$res" ]; then
|
||||||
# shellcheck disable=2154
|
|
||||||
lf -remote "send $id select '$file'"
|
|
||||||
if [ -n "$VIM" ]; then
|
if [ -n "$VIM" ]; then
|
||||||
lf -remote "send $id open '$file'"
|
lf -remote "send $id pushedit '$file'"
|
||||||
elif { [ "$EDITOR" = "nvim" ] || [ "$EDITOR" = "vim" ]; } && [ -n "$EMBEDDED" ]; then
|
elif { [ "$EDITOR" = "nvim" ] || [ "$EDITOR" = "vim" ]; } && [ -n "$EMBEDDED" ]; then
|
||||||
lf -remote "send $id \$$EDITOR +'call cursor($row, $column)' -- $([ -n "$EMBEDDED" ] && echo "--") '$file'"
|
lf -remote "send $id \$$EDITOR +'call cursor($row, $column)' -- $([ -n "$EMBEDDED" ] && echo "--") '$file'"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue