Skip to content

Commit cb3c308

Browse files
authored
Feature: Ctrl+Shift+V to paste into the selected folder (#11781)
1 parent d9b6632 commit cb3c308

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Files.App/Actions/FileSystem/PasteItemToSelectionAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using Files.App.Helpers;
99
using System.ComponentModel;
1010
using System.Threading.Tasks;
11+
using Windows.System;
1112

1213
namespace Files.App.Actions
1314
{
@@ -19,6 +20,8 @@ internal class PasteItemToSelectionAction : ObservableObject, IAction
1920

2021
public RichGlyph Glyph { get; } = new(opacityStyle: "ColorIconPaste");
2122

23+
public HotKey HotKey { get; } = new(VirtualKey.V, VirtualKeyModifiers.Control | VirtualKeyModifiers.Shift);
24+
2225
private bool isExecutable;
2326
public bool IsExecutable => isExecutable;
2427

0 commit comments

Comments
 (0)