diff runtime/doc/todo.txt @ 13950:741b1feeac9f v8.0.1845

patch 8.0.1845: various comment updates needed, missing white space commit https://github.com/vim/vim/commit/259f26ac2d41ecfb28b82c651b2bfc1edc7c3e29 Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 15 22:25:40 2018 +0200 patch 8.0.1845: various comment updates needed, missing white space Problem: Various comment updates needed, missing white space. Solution: Update comments, add white space.
author Christian Brabandt <cb@256bit.org>
date Tue, 15 May 2018 22:30:07 +0200
parents cd513458728c
children bbff863d3cae
line wrap: on
line diff
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt*      For Vim version 8.0.  Last change: 2018 May 13
+*todo.txt*      For Vim version 8.0.  Last change: 2018 May 15
 
 
 		  VIM REFERENCE MANUAL	  by Bram Moolenaar
@@ -47,7 +47,7 @@ On Win32 when not in the console and t_C
 (Nobuhiro Takasaki, #2833)  Also check t_Co.
 
 Pop-up menu overlapping terminal is not cleared completely. (Lifepillar, 2018
-May 13, #2908)
+May 13, #2908)  Hint from Christian, May 14.
 
 balloon_show() does not work properly in the terminal. (Ben Jackson, 2017 Dec
 20, #2481)
@@ -1330,7 +1330,7 @@ When evaluating expression in backticks,
 (Andy Wokula, 2013 Dec 14)
 
 Using <nr>ifoobar<esc> can slow down Vim.  Patch by Christian Brabandt, 2013
-Dec 13.
+Dec 13.  Only helps a bit, 10000ii<Esc> is still too slow.
 
 GTK: problem with 'L' in 'guioptions' changing the window width.
 (Aaron Cornelius, 2012 Feb 6)
@@ -4231,7 +4231,6 @@ 8   Syntax highlighting is slow when del
 -   Have a look at how pdksh does memory allocation (alloc.c). (Dalecki)
 -   Do profiling on:
     - :g/pat/normal cmd
-    - 1000ii<Esc>
     - deleting 10Mbyte worth of lines (netscape binary)
     - "[i" and "[d" (Yegappan Lakshmanan)
     - ":g/^/m0" on a 450Kbyte file.  And the "u".
@@ -4250,8 +4249,6 @@ 7   Screen updating can be further impro
 -   Executing a register, e.g. "10000@@" is slow, because ins_typebuf has to
     move the previous commands forward each time.  Pass count from
     normal_cmd() down to do_execreg().
--   Repeating insert "1000i-<Esc>" displays --INSERT-- all the time, because of
-    the <Esc> at the end.  Make this work faster (disable redrawing).
 -   Avoid calls to plines() for cursor line, use w_cline_height.
 -   After ":set nowrap" remove superfluous redraw with wrong hor. offset if
     cursor is right of the screen.