David Daily 2020-01-14 09:50:05 -06:00
parent d5f66d609c
commit 9018c2bffc
1 changed files with 16 additions and 0 deletions

@ -5,6 +5,22 @@ I created something so that I can always have multiple strings at my fingertips.
## Top-level overview
What it does is take an `ini` (based off [this](https://daviddaily.dev/david/d3k/src/branch/master/glovarsource)) and turn it into hotstrings that start with `$` automagically. The Key (left side of the `=`) is the hotstring, the Value (right side of the `=`) is what it gets replaced with.
### Example:
if your `ini` looks like this:
```ini
[Serial Numbers]
1=3329RW103JE
old=RWGISFJ400293
```
glovar.ahk would look like this:
```ahk
#SingleInstance force
:*:$1::3329RW103JE
:*:$old::RWGISFJ400293
```
### Why?
This way I'm not copying and pasting twenty different things, mixing up similar serial numbers or other information. It also doubles as a replacement to a WPF-based application the in-house IT created that generates ugly output and is a pain to use.