Added a README to each of the plugins, giving an overview on how they work

This commit is contained in:
Kirottu
2023-05-02 08:37:43 +03:00
parent 8a4c0ae397
commit 81b00ad52b
10 changed files with 130 additions and 16 deletions

View File

@@ -1,13 +1,21 @@
# Symbols
## User defined symbols
Look up unicode symbols and custom user defined symbols.
## Usage
Simply search for the symbol's name.
## Configuration
User defined symbols are defined in the `symbols.ron` file inside the anyrun configuration directory. The structure of the file is as follows:
```ron
// <Anyrun config dir>/symbols.ron
Config(
// Custom user defined symbols to be included along the unicode symbols
symbols: {
// "search-term": "text to be copied"
// "name": "text to be copied"
"shrug": "¯\_(ツ)_/¯",
}
},
max_entries: 3,
)
```