mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-08 19:22:57 +00:00

Former-commit-id: 46ef678067f79997b35a86931a324e8404d4db98 [formerly 16e52ff387b32d4dcbec9bfe6132ea71192f331a] [formerly 985b6e3050f66c3131f1c62aab9a5dbe025437f2 [formerly fc71509dd032eb5cdbbfeb8de9a25d836bb2d61c]] Former-commit-id: acffffe9de1e64b90cc0cc0eb2dff9e367c70d88 [formerly af4f7056c6fb45b96e115b182e7ab2303fc39159] Former-commit-id: 17d369064f83ebf81d7374b92245c9003f86efbe
32 lines
938 B
Vue
32 lines
938 B
Vue
<template>
|
|
<div class="prompt help">
|
|
<h3>Help</h3>
|
|
|
|
<ul>
|
|
<li><strong>F1</strong> - this information</li>
|
|
<li><strong>F2</strong> - rename file</li>
|
|
<li><strong>DEL</strong> - delete selected items</li>
|
|
<li><strong>ESC</strong> - clear selection and/or close the prompt</li>
|
|
<li><strong>CTRL + S</strong> - save a file or download the directory where you are</li>
|
|
<li><strong>CTRL + Click</strong> - select multiple files or directories</li>
|
|
<li><strong>Double click</strong> - open a file or directory</li>
|
|
<li><strong>Click</strong> - select file or directory</li>
|
|
</ul>
|
|
|
|
<p>Not available yet</p>
|
|
|
|
<ul>
|
|
<li><strong>Alt + Click</strong> - select a group of files</li>
|
|
</ul>
|
|
|
|
<div>
|
|
<button type="submit" @click="$store.commit('closePrompts')" class="ok">OK</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {name: 'help'}
|
|
</script>
|
|
|