1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-17 13:34:04 +00:00

Update shortcuts (fixes #51)

This commit is contained in:
2023-06-29 09:50:18 +02:00
parent e53019a4b0
commit ce9934faa7
14 changed files with 109 additions and 57 deletions

View File

@ -4,6 +4,8 @@ parent: User guide
order: 30
---
## Shortcuts
You can use the following shortcuts when you have opened a collection.
{% render "shortcuts", shortcuts: shortcuts.collections %}
{% render "shortcuts", shortcuts: shortcuts["Managing collections"] %}

View File

@ -2,5 +2,10 @@
title: Databases
parent: User guide
order: 20
stub: true
---
## Shortcuts
You can use the following shortcuts when you have opened a database.
{% render "shortcuts", shortcuts: shortcuts["Managing databases"] %}

View File

@ -2,5 +2,10 @@
title: Managing hosts
parent: User guide
order: 10
stub: true
---
## Shortcuts
You can use the following shortcuts to manage hosts and connections.
{% render "shortcuts", shortcuts: shortcuts["Connecting to hosts"] %}

View File

@ -1,16 +0,0 @@
---
title: Logfiles
parent: User guide
order: 120
---
Rolens keeps track of log-worthy events and logs them in its log directory.
* Windows: `~/AppData/Local/Rolens/Logs`
* Mac: `~/Library/Logs/Rolens`
* Linux: `~/.config/rolens/logs`
In those directories, you can find the following files:
* `rolens.log`: This is the main log file which is a chronological stream of events such as frontend errors, connection problems et cetera.
* `environment.json`: This file contains information about your environment that could be useful while debugging.

View File

@ -0,0 +1,12 @@
---
title: Shortcut reference
parent: User guide
order: 900
---
<p>You can use the following shortcuts to manage hosts and connections.</p>
{% for item in shortcuts %}
<h2>{{ item[0] }}</h2>
{% render "shortcuts", shortcuts: item[1] %}
{% endfor %}