diff options
author | bptato <nincsnevem662@gmail.com> | 2024-02-17 22:03:07 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-02-17 22:07:11 +0100 |
commit | 390772358cedc9ed541a27b3cac1f8d97beef0ef (patch) | |
tree | 621e56ad7b1b4957b1ba686a8902381ce270619c /README.md | |
parent | e98d0ad1dc51050eb17120f835847d55950c2a0b (diff) | |
download | chawan-390772358cedc9ed541a27b3cac1f8d97beef0ef.tar.gz |
regex: re-work compileSearchRegex
I've gotten tired of not being able to search for forward slashes. Now it works like in vim, and you can also set default ignore case in the config.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md index ea8717a7..7bbf4e5d 100644 --- a/README.md +++ b/README.md @@ -141,9 +141,8 @@ than if it doesn't. Chawan does not have browser tabs. Instead, each website is opened in a new buffer, which is added to the buffer tree. This is very similar to how w3m -handles buffers, except a) source files are stored in memory, not on the disk, -and b) instead of a linked list of buffers, they are stored in a tree. (And -of course, c) there are no tabs.) +handles buffers, except instead of a linked list of buffers, they are stored in +a tree. This model has the advantage of allowing the user to instantly view the previous page in all cases, without any complicated caching mechanism. It |