summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorDenys Séguret <cano.petrole@gmail.com>2022-10-04 20:04:59 +0200
committerGitHub <noreply@github.com>2022-10-04 20:04:59 +0200
commit3e2890739526baadb11139c4297a1bc02951fe06 (patch)
treef6588eeb965bda2401e2612ad7027506c57ed6a3 /CHANGELOG.md
parent818d069c51efe3a1736743a06c714ae7c351818a (diff)
New escaping rules (#609)
As was noticed by @FedericoStra, escaping for regular expressions was painful. For example you had to do `/\\d` to search for a digit. This PR brings more complex escaping rules so that less escaping is necessary: - when after '/': only ' ', ':', '/' and '\' need escaping - otherwise, '&,' '|', '(', ')', '\' need escaping Fix #592
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f7a6ea1..6d71ff4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,7 @@
- status messages now displayed on toggling (for example showing hidden files)
- upgrade terminal-light to 1.0.1 for better recognition of background color on high precision color terminals
- in default configuration, ctrl-left never opens a panel to the left, as I think this was most often unwanted (one too many hit on cltr-left). It's possible to get the old behavior by binding ctrl-left to `:panel_left` instead of the new `:panel_left_no_open` internal.
+- New escaping rules basically let you skip many `\`, especially when building regexes - Fix #592
### v1.15.0 - 2022-09-24
<a name="v1.15.0"></a>