78 lines
2.9 KiB
Dart
78 lines
2.9 KiB
Dart
|
|
String helpContent = """
|
|||
|
|
# Search
|
|||
|
|
|
|||
|
|
Type to filter notes by title.
|
|||
|
|
Use #tags, +projects, or @contexts to find notes with specific tags.
|
|||
|
|
Start with a / to filter notes within /subdirectories.
|
|||
|
|
Mix text, tags, and folders (/work project #important).
|
|||
|
|
|
|||
|
|
# Create Notes
|
|||
|
|
|
|||
|
|
Type the title of a new note in the search bar and hit Enter.
|
|||
|
|
Use /folder/note title to create a note inside a subdirectory.
|
|||
|
|
Subfolders will be automatically created if they don’t exist.
|
|||
|
|
|
|||
|
|
# Delete Notes
|
|||
|
|
|
|||
|
|
Swipe a note in the list to the left to move it to the trash.
|
|||
|
|
The trash is a directory in the root folder.
|
|||
|
|
Use :emptytrash or the context menu button to permanently clear deleted notes.
|
|||
|
|
|
|||
|
|
# Edit Notes
|
|||
|
|
|
|||
|
|
Enable/disable autosave in the menu. When disabled you can use the Save button in the menu.
|
|||
|
|
If there are unsaved changes when you are leaving the editor, you will be prompted to save.
|
|||
|
|
|
|||
|
|
# Tag Notes
|
|||
|
|
|
|||
|
|
Use tags anywhere in the notes and they will be detected.
|
|||
|
|
#tags – General categorization.
|
|||
|
|
+projects – Project-based grouping.
|
|||
|
|
@contexts – Context-specific notes.
|
|||
|
|
|
|||
|
|
# Context Menu
|
|||
|
|
|
|||
|
|
Tap the orange blaster at the top right to open the Preferences.
|
|||
|
|
|
|||
|
|
Here you find toggles to show/hide the tags below the note titles and switch between light and dark themes.
|
|||
|
|
|
|||
|
|
You can also exclude subdirectories from your search.
|
|||
|
|
|
|||
|
|
By default the search bar filters by note titles, folders, and tags, but you can also toggle including the file contents. Please be aware that this might slow down the app if you have many files.
|
|||
|
|
|
|||
|
|
If you prefer to use a different Markdown editor for your files you can toggle that and when you tap a file in the list you can choose what to open the file with.
|
|||
|
|
|
|||
|
|
By default the notes are saved in the App's own directory which is inaccessible to other apps. If you want to choose your own custom folder for this, you can set it. You will be asked for special permissions to do so. This will enable you to save the notes wherever you want, for example to sync them with a different app. You can also choose a folder that already has notes in it.
|
|||
|
|
|
|||
|
|
# File Organization
|
|||
|
|
|
|||
|
|
Root notes are listed above subfolder notes.
|
|||
|
|
Subfolders are ordered by the latest modified file inside them.
|
|||
|
|
Empty folders auto-delete after the last file is removed.
|
|||
|
|
|
|||
|
|
# Commands
|
|||
|
|
|
|||
|
|
Use commands by starting with a colon :
|
|||
|
|
|
|||
|
|
:help – Open this guide.
|
|||
|
|
:tags – Toggle tag visibility.
|
|||
|
|
:day - Switch to light theme.
|
|||
|
|
:night - Switch to dark theme.
|
|||
|
|
:extern – Toggle external editor usage.
|
|||
|
|
:intern – Toggle internal editor usage.
|
|||
|
|
:emptytrash – Permanently delete trashed notes.
|
|||
|
|
:about – Open app information.
|
|||
|
|
|
|||
|
|
|
|||
|
|
""";
|
|||
|
|
|
|||
|
|
String aboutContent = """
|
|||
|
|
**Muzzle Velocity** is a fast and minimalist note-taking app inspired by *Notational Velocity* and *Terminal Velocity*.
|
|||
|
|
|
|||
|
|
It is built for speed and efficiency, eliminating unnecessary UI clutter. Every action should be as fast and frictionless as possible.
|
|||
|
|
|
|||
|
|
Made with 🧡 by randogoth
|
|||
|
|
|
|||
|
|
with the invaluable help of
|
|||
|
|
OpenAI's 🤖 ChatGPT
|
|||
|
|
""";
|