mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2025-04-05 08:41:51 +00:00
Use $SHELL to start $FZF_DEFAULT_COMMAND (#481)
This commit is contained in:
parent
30bd0b53db
commit
e95d82748f
@ -4,7 +4,6 @@ import (
|
|||||||
"bufio"
|
"bufio"
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
|
||||||
|
|
||||||
"github.com/junegunn/fzf/src/util"
|
"github.com/junegunn/fzf/src/util"
|
||||||
)
|
)
|
||||||
@ -59,7 +58,7 @@ func (r *Reader) readFromStdin() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (r *Reader) readFromCommand(cmd string) {
|
func (r *Reader) readFromCommand(cmd string) {
|
||||||
listCommand := exec.Command("sh", "-c", cmd)
|
listCommand := util.ExecCommand(cmd)
|
||||||
out, err := listCommand.StdoutPipe()
|
out, err := listCommand.StdoutPipe()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
|
@ -4,7 +4,6 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
|
||||||
"os/signal"
|
"os/signal"
|
||||||
"regexp"
|
"regexp"
|
||||||
"sort"
|
"sort"
|
||||||
@ -720,11 +719,7 @@ func quoteEntry(entry string) string {
|
|||||||
|
|
||||||
func executeCommand(template string, replacement string) {
|
func executeCommand(template string, replacement string) {
|
||||||
command := strings.Replace(template, "{}", replacement, -1)
|
command := strings.Replace(template, "{}", replacement, -1)
|
||||||
shell := os.Getenv("SHELL")
|
cmd := util.ExecCommand(command)
|
||||||
if len(shell) == 0 {
|
|
||||||
shell = "sh"
|
|
||||||
}
|
|
||||||
cmd := exec.Command(shell, "-c", command)
|
|
||||||
cmd.Stdin = os.Stdin
|
cmd.Stdin = os.Stdin
|
||||||
cmd.Stdout = os.Stdout
|
cmd.Stdout = os.Stdout
|
||||||
cmd.Stderr = os.Stderr
|
cmd.Stderr = os.Stderr
|
||||||
|
@ -5,6 +5,7 @@ import "C"
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
|
"os/exec"
|
||||||
"time"
|
"time"
|
||||||
"unicode/utf8"
|
"unicode/utf8"
|
||||||
)
|
)
|
||||||
@ -126,3 +127,12 @@ func TrimLen(runes []rune) int {
|
|||||||
}
|
}
|
||||||
return i - j + 1
|
return i - j + 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ExecCommand executes the given command with $SHELL
|
||||||
|
func ExecCommand(command string) *exec.Cmd {
|
||||||
|
shell := os.Getenv("SHELL")
|
||||||
|
if len(shell) == 0 {
|
||||||
|
shell = "sh"
|
||||||
|
}
|
||||||
|
return exec.Command(shell, "-c", command)
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user