We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf4519 commit 443a6edCopy full SHA for 443a6ed
editor/config.go
@@ -88,6 +88,7 @@ type editorConfig struct {
88
HideMouseWhenTyping bool
89
IgnoreSaveConfirmationWithCloseButton bool
90
UseWSL bool
91
+ ShowDiffDialogOnDrop bool
92
}
93
94
type cursorConfig struct {
editor/window.go
@@ -3482,7 +3482,7 @@ func (w *Window) dropEvent(e *gui.QDropEvent) {
3482
false,
3483
)
3484
} else {
3485
- if bufName != "" {
+ if editor.config.Editor.ShowDiffDialogOnDrop && bufName != "" {
3486
w.s.howToOpen(filepath)
3487
3488
fileOpenInBuf(filepath)
0 commit comments