Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add helpful config comments #248

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def alt_or_cmd(self) -> str:
# Quit Mirage
quit = []

class Scrolling:
class Scrolling: # Keys.Scrolling
# Pages and chat timeline scrolling
up = ["Alt+Up", "Alt+K"]
down = ["Alt+Down", "Alt+J"]
Expand Down Expand Up @@ -322,7 +322,7 @@ class Accounts:
previous = ["Alt+Shift+N"]
next = ["Alt+N"]

class AtIndex:
class AtIndex: # Accounts.AtIndex
# Switch to the first room of the account number X in the list.
# Each property is a list of keybinds for the account number X.
# Numbers beyond the default ones can be added.
Expand Down Expand Up @@ -373,7 +373,7 @@ class Rooms:
oldest_highlight = ["Ctrl+Shift+M"]
latest_highlight = ["Ctrl+M"]

class AtIndex:
class AtIndex: # Rooms.AtIndex
# Switch to room number X in the current account.
# Each property is a list of keybinds for the room number X:
# Numbers beyond the default ones can be added.
Expand All @@ -400,7 +400,7 @@ class Direct:
# which account should be targeted as "<userId> <roomId>":
"@account:example.org !roomID:example.org" = []

class Chat:
class Chat: # Keys.Chat
# Keybinds specific to the current chat page.

# Focus the right room pane. If the pane is currently showing the
Expand Down