Update runtime files
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index cc4e7c4..7ddc4a3 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -4399,8 +4399,11 @@
has_key({dict}, {key}) *has_key()*
The result is a Number, which is TRUE if |Dictionary| {dict}
- has an entry with key {key}. FALSE otherwise. The {key}
- argument is a string.
+ has an entry with key {key}. FALSE otherwise.
+ The {key} argument is a string. In |Vim9| script a number is
+ also accepted (and converted to a string) but no other types.
+ In legacy script the usual automatic conversion to string is
+ done.
Can also be used as a |method|: >
mydict->has_key(key)
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 0b35e94..9141763 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -799,7 +799,8 @@
When on, Vim will change the current working directory whenever you
open a file, switch buffers, delete a buffer or open/close a window.
It will change to the directory containing the file which was opened
- or selected.
+ or selected. When a buffer has no name it also has no directory, thus
+ the current directory won't change when navigating to it.
Note: When this option is on some plugins may not work.
*'autoshelldir'* *'asd'* *'noautoshelldir'* *'noasd'*
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt
index 86e7edd..7d6b92d 100644
--- a/runtime/doc/syntax.txt
+++ b/runtime/doc/syntax.txt
@@ -4905,6 +4905,7 @@
autocommand event is triggered. After the color scheme has been loaded the
|ColorScheme| autocommand event is triggered.
+ *colorscheme-override*
If a color scheme is almost right, you can add modifications on top of it by
using the |ColorScheme| autocommand. For example, to remove the background
color (can make it transparent in some terminals): >
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 58650d4..a7ef8cf 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -6229,6 +6229,7 @@
color-schemes syntax.txt /*color-schemes*
color-xterm syntax.txt /*color-xterm*
coloring syntax.txt /*coloring*
+colorscheme-override syntax.txt /*colorscheme-override*
colortest.vim syntax.txt /*colortest.vim*
command-attributes map.txt /*command-attributes*
command-block vim9.txt /*command-block*
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 66640aa..4982498 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -41,8 +41,6 @@
Text props: Add "padding" argument - only for when using "text" and {col} is
zero. Use tp_len field and n_attr_skip. #10906
-Graduate FEAT_TEXTOBJ ?
-
Further Vim9 improvements, possibly after launch:
- Use Vim9 for more runtime files.
- Check performance with callgrind and kcachegrind.