You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -167,6 +167,16 @@ You can set the VSCode text editor to use an installed Nerd Font by setting `"ed
167
167
168
168
Once you have a Nerd Font set for your editor font, to use these icons in your oil view, set `"oil-code.hasNerdFont": true`.
169
169
170
+
## Confirmation Dialog
171
+
172
+
By default, oil.code uses a modal confirmation dialog when you save file operations. You can enable an alternate confirmation interface by setting `"oil-code.enableAlternateConfirmation": true`.
173
+
174
+
The alternate confirmation dialog provides a QuickPick interface where you can:
175
+
176
+
- Type `Y` to confirm and apply changes
177
+
- Type `N` to cancel and discard changes
178
+
- Press `Esc` or click outside to cancel
179
+
170
180
## Other great extensions
171
181
172
182
-[vsnetrw](https://github.com/danprince/vsnetrw): Another great option for a split file explorer.
Copy file name to clipboardExpand all lines: package.json
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -160,6 +160,11 @@
160
160
"type": "boolean",
161
161
"default": false,
162
162
"description": "Enable workspace edit for file move/rename operations. When enabled, VS Code will ask to update references when a file is moved or renamed. Default is false."
163
+
},
164
+
"oil-code.enableAlternateConfirmation": {
165
+
"type": "boolean",
166
+
"default": false,
167
+
"description": "Enable alternate confirmation dialog for file operations. When enabled, uses a QuickPick interface instead of the default modal confirmation dialog. Default is false."
0 commit comments