From bc25b566a09ecaad307c19281ae7f9cbba98ce90 Mon Sep 17 00:00:00 2001 From: Andrey Mishchenko Date: Wed, 8 Dec 2021 12:27:43 -0500 Subject: [PATCH] Add CHANGELOG entry noting special input functions no longer available as fish functions --- CHANGELOG.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f3c1bf981..aaa714645 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -52,6 +52,7 @@ Deprecations and removed features - ``set --query`` now returns a falsy status of 255 if given no variable names. This means ``if set -q $foo`` will not enter the if-block if ``$foo`` is empty or unset. To restore the previous behavior you would use something like ``if not set -q foo; or set -q $foo``. We do not expect anyone to have used this on purpose, any places this happens are almost certainly buggy (:issue:`8214`). - Mac OS X 10.9 is no longer supported. The minimum Mac version is now 10.10 "Yosemite." - ``_`` is now a reserved keyword (:issue:`8342`). +- New special input functions ``nextd-or-forward-word`` and ``prevd-or-backward-word`` replace fish functions of the same names. The special input function ``delete-or-exit`` is no longer available as fish function (:issue:`8538`). Scripting improvements ----------------------