aboutsummaryrefslogtreecommitdiffhomepage
path: root/release_notes.html
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-06-04 23:54:43 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-06-04 23:54:43 -0700
commitbe1d216b34c5e9c8dd89b60362883c21c5edc5fc (patch)
treede5064fea0d4c5bf7cbd17132d93a7b890adb667 /release_notes.html
parent85cbb943b56d143ef93cd1a2e1b36145152b6d7d (diff)
Relnoted history builtin
Tweaked validation regex to use extended regexs
Diffstat (limited to 'release_notes.html')
-rw-r--r--release_notes.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/release_notes.html b/release_notes.html
index 8484087d..45ee8e7e 100644
--- a/release_notes.html
+++ b/release_notes.html
@@ -22,6 +22,18 @@ li {
<li>A SIGTERM now ends the whole execution stack again (<a href="https://github.com/ridiculousfish/fishfish/issues/13">from this issue</a>).
</ul>
+<h3>New Features</h3>
+<ul>
+<li>A <b>history builtin</b>, and associated interactive function that enables deleting history items. Example usage:
+
+<ul>
+<li>Print all history items beginning with echo: <span class="mono">history --search --prefix echo</span></li>
+<li>Print all history items containing foo: <span class="mono">history --search --contains foo</span></li>
+<li>Interactively delete some items containing foo: <span class="mono">history --delete --contains foo</span></li>
+</ul><br>
+Credit to Siteshwar for implementation. Thanks Siteshwar!
+</li>
+
<hr>