Skip to content

Implement Aliasing Support

Michael Aaron Murphy requested to merge mmstick:aliases into master

Implements support for creating aliases, resolving issue #215 (closed). I've implemented the syntax to utilize the existing let keyword, like so:

alias ls = "ls --color"
ls -l
# Expands to and executes `ls --color -l`

Merge request reports