1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-28 16:02:01 +03:00

Honour editInTerminal value when opening a worktree folder

There was no good reason not to do this in the first place.
This commit is contained in:
Jesse Duffield
2023-08-09 20:59:46 +10:00
parent cdea5b4873
commit 9e7018db8a
3 changed files with 7 additions and 8 deletions

View File

@ -38,10 +38,9 @@ func (self *FilesHelper) EditFileAtLineAndWait(filename string, lineNumber int)
}
func (self *FilesHelper) OpenDirInEditor(path string) error {
cmdStr := self.c.Git().File.GetOpenDirInEditorCmdStr(path)
cmdStr, editInTerminal := self.c.Git().File.GetOpenDirInEditorCmdStr(path)
// Not editing in terminal because surely that's not a thing.
return self.callEditor(cmdStr, false)
return self.callEditor(cmdStr, editInTerminal)
}
func (self *FilesHelper) callEditor(cmdStr string, editInTerminal bool) error {