From 874a45e34bb674354f436bc9c03bdcd6f8c9d639 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Wed, 29 Dec 2021 01:58:45 +0100 Subject: [PATCH] add new SN symbol --- docs/part/trackable.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/part/trackable.md b/docs/part/trackable.md index f33c637..8a6cc12 100644 --- a/docs/part/trackable.md +++ b/docs/part/trackable.md @@ -22,6 +22,7 @@ For faster input there are several ways to define the wanted serial numbers(SN): | | `1` | `[1]` | single SN | | , | `1,3,5` | `[1, 3, 5]` | list of SNs | | - | `1-5` | `[1, 2, 3, 4, 5]` | strech of SN | +| ~ | `~` (next SN is 8) | `[8]` | represents the next SN | | ``+ | `4+` (with 3 numbers needed) | `[4, 5, 6]` | all needed SNs from `<start>` | | `<start>`+<length> | `2+2` | `[2, 3, 4]` | `<length>` SNs added to `<start>` |