2019-10-07 03:34:12 +02:00
|
|
|
package gui
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/jesseduffield/gocui"
|
|
|
|
)
|
|
|
|
|
|
|
|
// when a user runs lazygit with the LAZYGIT_NEW_DIR_FILE env variable defined
|
|
|
|
// we will write the current directory to that file on exit so that their
|
|
|
|
// shell can then change to that directory. That means you don't get kicked
|
|
|
|
// back to the directory that you started with.
|
|
|
|
func (gui *Gui) recordCurrentDirectory() error {
|
|
|
|
if os.Getenv("LAZYGIT_NEW_DIR_FILE") == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// determine current directory, set it in LAZYGIT_NEW_DIR_FILE
|
|
|
|
dirName, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return gui.OSCommand.CreateFileWithContent(os.Getenv("LAZYGIT_NEW_DIR_FILE"), dirName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) handleQuitWithoutChangingDirectory(g *gocui.Gui, v *gocui.View) error {
|
|
|
|
gui.State.RetainOriginalDir = true
|
|
|
|
return gui.quit(v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) handleQuit(g *gocui.Gui, v *gocui.View) error {
|
|
|
|
gui.State.RetainOriginalDir = false
|
|
|
|
return gui.quit(v)
|
|
|
|
}
|
|
|
|
|
2020-07-18 11:41:13 +02:00
|
|
|
func (gui *Gui) handleTopLevelReturn(g *gocui.Gui, v *gocui.View) error {
|
2020-08-12 12:30:28 +02:00
|
|
|
if gui.inDiffMode() {
|
|
|
|
return gui.exitDiffMode()
|
|
|
|
}
|
|
|
|
if gui.inFilterMode() {
|
|
|
|
return gui.exitFilterMode()
|
|
|
|
}
|
|
|
|
|
2020-07-18 11:41:13 +02:00
|
|
|
if gui.Config.GetUserConfig().GetBool("quitOnTopLevelReturn") {
|
|
|
|
return gui.handleQuit(g, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-10-07 03:34:12 +02:00
|
|
|
func (gui *Gui) quit(v *gocui.View) error {
|
|
|
|
if gui.State.Updating {
|
|
|
|
return gui.createUpdateQuitConfirmation(gui.g, v)
|
|
|
|
}
|
2020-08-12 12:30:28 +02:00
|
|
|
|
2019-10-07 03:34:12 +02:00
|
|
|
if gui.Config.GetUserConfig().GetBool("confirmOnQuit") {
|
2020-08-15 08:36:39 +02:00
|
|
|
return gui.createConfirmationPanel(createConfirmationPanelOpts{
|
|
|
|
returnToView: v,
|
|
|
|
returnFocusOnClose: true,
|
|
|
|
title: "",
|
|
|
|
prompt: gui.Tr.SLocalize("ConfirmQuit"),
|
|
|
|
handleConfirm: func() error {
|
|
|
|
return gocui.ErrQuit
|
|
|
|
},
|
|
|
|
})
|
2019-10-07 03:34:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return gocui.ErrQuit
|
|
|
|
}
|