can now send questions to gemini-cli from regex

This commit is contained in:
Jeff Carr 2025-08-25 10:58:47 -05:00
parent a813b2e206
commit f5b923f180
3 changed files with 54 additions and 2 deletions

53
editor.go Normal file
View File

@ -0,0 +1,53 @@
package main
import (
"io/ioutil"
"os"
"os/exec"
"strings"
)
func doEditor() (string, error) {
// Create a temporary file
tmpfile, err := ioutil.TempFile("", "regex-*.txt")
if err != nil {
return "", err
}
tmpPath := tmpfile.Name()
// Defer removal in case of error, but we might move it
defer os.Remove(tmpPath)
tmpfile.Close()
// Get the user's editor
editor := os.Getenv("EDITOR")
if editor == "" {
editor = "vim" // default to vim
}
// Run the editor
cmd := exec.Command(editor, tmpPath)
cmd.Stdin = os.Stdin
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
if err := cmd.Run(); err != nil {
return "", err
}
// Read the file content
content, err := ioutil.ReadFile(tmpPath)
if err != nil {
return "", err
}
// Check if the file is not empty after trimming space
if strings.TrimSpace(string(content)) != "" {
// Move the file
if err := os.Rename(tmpPath, "/tmp/regex.txt"); err != nil {
return "", err
}
return "/tmp/regex.txt", nil
}
return "", nil
}

1
junk
View File

@ -1 +0,0 @@

View File

@ -59,7 +59,7 @@ func main() {
}
if argv.Editor != nil {
// doEditor()
doEditor()
okExit("")
}