From fa489201ecb97ae40f71fac7a3b84290acdbca4a Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 16 Oct 2018 11:41:15 +0200 Subject: [PATCH] Update changelog --- doc/changelog.asciidoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc index f3fc74e4d..32018b7ba 100644 --- a/doc/changelog.asciidoc +++ b/doc/changelog.asciidoc @@ -40,7 +40,7 @@ Changed (`:close`), while `:qa` quits (`:quit`). The behavior of `:wq` remains unchanged (`:quit --save`), as closing a window while saving the session doesn't make sense. -- Completion highlighting is now done differently (using QSyntaxHighlither), +- Completion highlighting is now done differently (using `QSyntaxHighlighter`), which should fix some highlighting corner-cases. - The `QtColor` config type now also understands colors like `rgb(...)`. - `:yank` now has a `--quiet` option which causes it to not display a message. @@ -48,6 +48,7 @@ Changed - The `content.host_blocking.enabled` setting now supports URL patterns, so the adblocker can be disabled on a given page. - Elements with a `tabindex` attribute now also get hints by default. +- Various small performance improvements for hints and the completion. Fixed ~~~~~