1- *todo.txt* For Vim version 8.0. Last change: 2017 Sep 19
1+ *todo.txt* For Vim version 8.0. Last change: 2017 Sep 27
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -35,17 +35,16 @@ entered there will not be repeated below, unless there is extra information.
3535 *known-bugs*
3636-------------------- Known bugs and current work -----------------------
3737
38+ MS-Windows build and installer improvements:
39+ - Switch to VC2015 for building. (Ken Takata, 2017 Sep 21)
40+ Check resulting binary on XP.
41+ - Patch to install 32 and 64 bit Gvimext and related dll files. (Ken Takata,
42+ 2017 Sep 23, #2144)
43+
3844:term hangs in Athena and Motif. (Kazunobu Kuriyama, 2017 Sep 17)
3945
40- Always use FEAT_WINDOWS:
41- May get rid of:
42- #define W_WINCOL(wp) (wp->w_wincol)
43- #define W_WIDTH(wp) (wp->w_width)
44- #define W_ENDCOL(wp) (wp->w_wincol + wp->w_width)
45- #define W_VSEP_WIDTH(wp) (wp->w_vsep_width)
46- #define W_STATUS_HEIGHT(wp) (wp->w_status_height)
47- #define W_WINROW(wp) (wp->w_winrow)
48- # define ALIST(win) (win)->w_alist
46+ Universal solution to detect if t_RS is working, using cursor position.
47+ Koichi Iwamoto, #2126
4948
5049No maintainer for Vietnamese translations.
5150No maintainer for Simplified Chinese translations.
@@ -70,6 +69,8 @@ Terminal emulator window:
7069 with the expected screenshot. Set t_Co to 256.
7170
7271+channel:
72+ - Add a separate timeout for opening a socket. Currently it's fixed at 50
73+ msec, which is too small for a remote connection. (tverniquet, #2130)
7374- Try out background make plugin:
7475 https://github.com/AndrewVos/vim-make-background
7576- Problem with stderr on Windows? (Vincent Rischmann, 2016 Aug 31, #1026)
@@ -94,6 +95,8 @@ Terminal emulator window:
9495 Although user could use "xterm -e 'cmd arg'".
9596
9697Regexp problems:
98+ - [:space:] only matches ASCII spaces. Add [:white:] for all space-like
99+ characters, esp. including 0xa0. Use character class zero.
97100- Since 7.4.704 the old regex engine fails to match [[:print:]] in 0xf6.
98101 (Manuel Ortega, 2016 Apr 24)
99102 Test fails on Mac. Avoid using isalpha(), isalnum(), etc? Depends on
@@ -149,14 +152,11 @@ Use names that indicate their appearnce (Christian Brabandt, 2017 Aug 3)
149152Suggested by Hiroki Kokubun:
150153- [Iceberg] (https://github.com/cocopon/iceberg.vim ) (my one)
151154- [hybrid] (https://github.com/w0ng/vim-hybrid )
152-
153- Patch to update Brazilian translations. (Eduardo Dobay, 2017 Sep 10, #2077)
155+ Include solarized color scheme?
154156
155157When starting with --clean packages under "start" are not loaded. Make this
156158work: :packadd START {name} similar to :runtime START name
157159
158- Patch to refactor qf_jump(). (Yegappan, 2017 Sep 17)
159-
160160When using :packadd files under "later" are not used, which is inconsistent
161161with packages under "start". (xtal8, #1994)
162162
@@ -175,14 +175,19 @@ Patch for not profiling the first line of a script. (Lemonboy, 2017 Sep 17,
175175Mac Terminal.app: ctermbg=15 gives light grey instead of white.
176176ctermbg=256 breaks clearing till end of the line. Both work fine in xterm.
177177
178+ Patch to avoid `rb_load_protect` as a workaround not to crash (#2147)
179+
180+ Patch for drag&drop reordering of GUI tab pages reordering.
181+ (Ken Takata, 2013 Nov 22, second one, also by Masamichi Abe)
182+ Now on Git: https://gist.github.com/nocd5/165286495c782b815b94
183+ Update 2016 Aug 10.
184+
178185Using ":hi" causes a redraw, but a redraw may update the status line, which
179186may trigger a ":hi" command.
180187
181188Last line not in profile if it is a continuation line. (LemonBoy, 2017 Sep 17,
182189#2112)
183190
184- "vim -c startinsert!" doesn't append. (#2117)
185-
186191With foldmethod=syntax and nofoldenable comment highlighting isn't removed.
187192(Marcin Szewczyk, 2017 Apr 26)
188193
@@ -203,6 +208,7 @@ Patch to make ":set scroll&" work properly. (Ozaki Kiichi, 2017 Sep 17, #2104)
203208
204209mswin.vim should not map CTRL-F in the console (#2093)
205210Patch from Christian, 2017 Sep 15.
211+ Installer patch from Ken Takata, link on #2093.
206212
207213Default install on MS-Windows should source defaults.vim.
208214Ask whether to use Windows or Vim key behavior?
@@ -324,8 +330,6 @@ Use gvimext.dll from the nightly build? (Issue #249)
324330Problem with using :cd when remotely editing a file. (Gerd Wachsmuth, 2017 May
3253318, #1690)
326332
327- Include solarized color scheme?
328-
329333Running test_gui and test_gui_init with Motif sometimes kills the window
330334manager. Problem with Motif?
331335
@@ -660,11 +664,6 @@ Patch to improve map documentation. Issue #799.
660664
661665Patch for syntax folding optimization. (Shougo, 2016 Sep 6, #1045)
662666
663- Patch for drag&drop reordering of GUI tab pages reordering.
664- (Ken Takata, 2013 Nov 22, second one, also by Masamichi Abe)
665- Now on Git: https://gist.github.com/nocd5/165286495c782b815b94
666- Update 2016 Aug 10.
667-
668667We can use '. to go to the last change in the current buffer, but how about
669668the last change in any buffer? Can we use ', (, is next to .)?
670669
@@ -2236,9 +2235,6 @@ with "gvim -nb:localhost:55555:foo". From nc do: '1:editFile!0 "foo"'. Then
22362235go to Insert mode and add a few lines. Then backspacing every other time
22372236moves the cursor instead of deleting. (Chris Kaiser, 2007 Sep 25)
22382237
2239- Windows installer should install 32-bit version of right-click handler also on
2240- 64-bit systems. (Brian Cunningham, 2011 Dec 28)
2241-
22422238Windows installer could add a "open in new tab of existing Vim" menu entry.
22432239Gvimext: patch to add "Edit with single Vim &tabbed" menu entry.
22442240Just have two choices, always using one Vim and selecting between using an
0 commit comments