Merge branch 'i2-update-wedocs' of whats_his_face/Traitor into master

master
NathanS21 2022-01-22 17:23:06 +00:00 committed by Gogs
commit fa02b0c984
2 changed files with 35 additions and 15 deletions

View File

@ -6,26 +6,42 @@ Many commands also have shorter names that can be typed faster. For example, if
| Short Name | Original Name |
|:-----------|:-------------------|
| `//i` | `//inspect` |
| `//rst` | `//reset` |
| `//mk` | `//mark` |
| `//umk` | `//unmark` |
| `//1` | `//pos1` |
| `//2` | `//pos2` |
| `//fp` | `//fixedpos` |
| `//v` | `//volume` |
| `//s` | `//set` |
| `//r` | `//replace` |
| `//ri` | `//replaceinverse` |
| `//hcube` | `//hollowcube` |
| `//hspr` | `//hollowsphere` |
| `//spr` | `//sphere` |
| `//hdo` | `//hollowdome` |
| `//do` | `//dome` |
| `//hcyl` | `//hollowcylinder` |
| `//c` | `//copy` |
| `//clro` | `//clearobjects` |
| `//cyl` | `//cylinder` |
| `//do` | `//dome` |
| `//fl` | `//flip` |
| `//fp` | `//fixedpos` |
| `//hcube` | `//hollowcube` |
| `//hcyl` | `//hollowcylinder` |
| `//hdo` | `//hollowdome` |
| `//hi` | `//hide` |
| `//hlt` | `//highlight` |
| `//hpyr` | `//hollowpyramid` |
| `//hspr` | `//hollowsphere` |
| `//i` | `//inspect` |
| `//l` | `//lua` |
| `//lt` | `//luatransform` |
| `//mk` | `//mark` |
| `//m` | `//move` |
| `//ort` | `//orient` |
| `//pyr` | `//pyramid` |
| `//ri` | `//replaceinverse` |
| `//rot` | `//rotate` |
| `//r` | `//replace` |
| `//rsr` | `//restore` |
| `//rst` | `//reset` |
| `//sch` | `//stretch` |
| `//spl` | `//spiral` |
| `//spr` | `//sphere` |
| `//s` | `//set` |
| `//stk` | `//stack` |
| `//sup` | `//suppress` |
| `//tps` | `//transpose` |
| `//umk` | `//unmark` |
| `//v` | `//volume` |
### `//about`

View File

@ -0,0 +1,4 @@
#!/bin/sh
## This generates the contents for the aliases table in ../ChatCommands.md
grep "alias_command(" init.lua | sort | sed 's,[^"]*",,;s/"[^"]*"/ /;s/".*//' | awk '{printf("| %-10s | %-18s |\n", "`//" $1 "`", "`//" $2 "`")}'