From 0d1b8741fde03e20f59328018f14536beb364519 Mon Sep 17 00:00:00 2001 From: Jason Bowen <bowen.pi@gmail.com> Date: Sat, 17 Jun 2017 10:46:01 -0500 Subject: [PATCH] Update README.md to add vi/emacs keybindings as a feature and fix a typo in example code (#304) * Updated README.md to include vi and emacs keybindings as completed features. * Fixed typo in 'Using Variables' example code. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 83ce92fa..0fd2a73a 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ Ion is a shell for UNIX platforms, and is the default shell in Redox. It is stil - [x] Background Jobs - [x] Multiline Comments and Commands - [x] Tab Completion (Needs Improvements) +- [x] vi and emacs keybindings (`set -o (vi|emacs)`) ## Unimplemented Features @@ -76,8 +77,8 @@ They may also be optionally defined using a braced syntax, which is useful in th integrated alongside other characters that do not terminate the variable parsing. ```ion -let a = one -let b = two +let A = one +let B = two echo $A:$B echo ${A}s and ${B}s ``` -- GitLab