Skip to content

Commit 773a97c

Browse files
committed
Update runtime files - Add typescript syntax and indent.
1 parent c07f67a commit 773a97c

5 files changed

Lines changed: 2680 additions & 57 deletions

File tree

runtime/doc/eval.txt

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 8.1. Last change: 2019 Jun 04
1+
*eval.txt* For Vim version 8.1. Last change: 2019 Jun 06
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -13063,8 +13063,16 @@ missing: >
1306313063
: echo "You will _never_ see this message"
1306413064
:endif
1306513065
13066-
To execute a command only when the |+eval| feature is disabled requires a trick,
13067-
as this example shows: >
13066+
To execute a command only when the |+eval| feature is disabled can be done in
13067+
two ways. The simplest is to exit the script (or Vim) prematurely: >
13068+
if 1
13069+
echo "commands executed with +eval"
13070+
finish
13071+
endif
13072+
args " command executed without +eval
13073+
13074+
If you do not want to abort loading the script you can use a trick, as this
13075+
example shows: >
1306813076
1306913077
silent! while 0
1307013078
set history=111

runtime/doc/todo.txt

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,16 @@ Popup windows are being implemented, see |popup-window|.
4444

4545
Listener causes extra } to be inserted. (Paul Jolly, #4455)
4646

47-
Patch to beautify the output of a test run. (Christian Brabandt, #4391)
48-
can be improved.
49-
5047
Patch to fix session file when using multiple tabs. (Jason Franklin, 2019 May
5148
20)
5249
Also put :argadd commands at the start for all buffers, so that their order
5350
remains equal? Then %argdel to clean it up. Do try this with 'hidden' set.
5451

5552
Patch for Chinese translations for nsis. (#4407) Comments handled?
5653

57-
Add test that does ":set t_k1&" to cover add_termcap_entry().
58-
5954
Patch to add v:searchstat. (Takuya Fujiwara, #4446) Should be independent of
6055
'shortmess', filled on demand and cached until search changes.
6156

62-
Problem with resolve() improvement. (Ken Takata, #4492)
63-
Yasuhiro will check it.
64-
6557
listener callback is invoked while another is still busy? (Paul Jolly)
6658
Should not happen because of text lock.
6759

@@ -175,9 +167,6 @@ Improve fallback for menu translations, to avoid having to create lots of
175167
files that source the actual file. E.g. menu_da_de -> menu_da
176168
Include part of #3242?
177169

178-
Add typescript syntax, but as one file:
179-
- https://github.com/HerringtonDarkholme/yats.vim
180-
181170
When a terminal exit_cb closes the window, a following typed key is lost, if
182171
it's in a mapping. (2018 Oct 6, #2302, #3522)
183172

0 commit comments

Comments
 (0)