Update runtime files - Add typescript syntax and indent.
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 82e2093..0b44e58 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt* For Vim version 8.1. Last change: 2019 Jun 04
+*eval.txt* For Vim version 8.1. Last change: 2019 Jun 06
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -13063,8 +13063,16 @@
: echo "You will _never_ see this message"
:endif
-To execute a command only when the |+eval| feature is disabled requires a trick,
-as this example shows: >
+To execute a command only when the |+eval| feature is disabled can be done in
+two ways. The simplest is to exit the script (or Vim) prematurely: >
+ if 1
+ echo "commands executed with +eval"
+ finish
+ endif
+ args " command executed without +eval
+
+If you do not want to abort loading the script you can use a trick, as this
+example shows: >
silent! while 0
set history=111
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 5e7b33d..b03633f 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -44,9 +44,6 @@
Listener causes extra } to be inserted. (Paul Jolly, #4455)
-Patch to beautify the output of a test run. (Christian Brabandt, #4391)
-can be improved.
-
Patch to fix session file when using multiple tabs. (Jason Franklin, 2019 May
20)
Also put :argadd commands at the start for all buffers, so that their order
@@ -54,14 +51,9 @@
Patch for Chinese translations for nsis. (#4407) Comments handled?
-Add test that does ":set t_k1&" to cover add_termcap_entry().
-
Patch to add v:searchstat. (Takuya Fujiwara, #4446) Should be independent of
'shortmess', filled on demand and cached until search changes.
-Problem with resolve() improvement. (Ken Takata, #4492)
-Yasuhiro will check it.
-
listener callback is invoked while another is still busy? (Paul Jolly)
Should not happen because of text lock.
@@ -175,9 +167,6 @@
files that source the actual file. E.g. menu_da_de -> menu_da
Include part of #3242?
-Add typescript syntax, but as one file:
-- https://github.com/HerringtonDarkholme/yats.vim
-
When a terminal exit_cb closes the window, a following typed key is lost, if
it's in a mapping. (2018 Oct 6, #2302, #3522)