This repository has been archived by the owner on Jun 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathKeyboards.html
114 lines (112 loc) · 2.65 KB
/
Keyboards.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Keyboard shortcuts</title>
<style type="text/css">
kbd {
border-radius: 3px;
padding: 1px 2px 0;
border: 1px solid black;
font-family: monospace;
}
table {
font-family: SegoeUI, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Key</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td><kbd>F1</kbd> / <kbd>Ctrl</kbd>+<kbd>C</kbd></td>
<td>Copy selected items</td>
</tr>
<tr>
<td><kbd>F2</kbd></td>
<td>Rename selected items</td>
</tr>
<tr>
<td><kbd>F3</kbd></td>
<td>View selected files</td>
</tr>
<tr>
<td><kbd>F4</kbd></td>
<td>Edit selected items</td>
</tr>
<tr>
<td><kbd>F5</kbd></td>
<td>Refresh file browser.</td>
</tr>
<tr>
<td><kbd>F6</kbd> / <kbd>Ctrl</kbd>+<kbd>X</kbd></td>
<td>Move selected items</td>
</tr>
<tr>
<td><kbd>F7</kbd> / <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>N</kbd></td>
<td>Create new folder</td>
</tr>
<tr>
<td><kbd>F8</kbd></td>
<td>Delete selected items</td>
</tr>
<tr>
<td><kbd>Ctrl</kbd>+<kbd>V</kbd></td>
<td>Paste files or folders.</td>
</tr>
<tr>
<td><kbd>Ctrl</kbd>+<kbd>Q</kbd></td>
<td>Exit the application.</td>
</tr>
<tr>
<td><kbd>Alt</kbd>+<kbd>Enter</kbd></td>
<td>Open properties dialog for selected items.</td>
</tr>
<tr>
<td><kbd>Ctrl</kbd>+<kbd>F</kbd></td>
<td>Search for files and folders.</td>
</tr>
<tr>
<td><kbd>Alt</kbd>+<kbd>⇑</kbd></td>
<td>Go to parent folder</td>
</tr>
<tr>
<td><kbd>Backspace</kbd> / <kbd>Alt</kbd>+<kbd>⇐</kbd></td>
<td>Go to previous folder.</td>
</tr>
<tr>
<td><kbd>Alt</kbd>+<kbd>⇒</kbd></td>
<td>Go to the following folder.</td>
</tr>
<tr>
<td><kbd>Enter</kbd></td>
<td>Open file or folder.</td>
</tr>
<tr>
<td><kbd>Delete</kbd></td>
<td>Send files or folders to Recycle bin</td>
</tr>
<tr>
<td><kbd>Shift</kbd>+<kbd>Delete</kbd></td>
<td>Permanently remove files or folders.</td>
</tr>
</tbody>
</table>
</body>
</html>