comparison runtime/doc/version7.txt @ 2355:84c7eeeb09e2 vim73

Fix typos in documentation. (Dominique Pelle)
author Bram Moolenaar <bram@vim.org>
date Tue, 20 Jul 2010 11:16:17 +0200
parents 12b829477c60
children d8e4b27cef80
comparison
equal deleted inserted replaced
2354:f4440cdd59ae 2355:84c7eeeb09e2
305 305
306 306
307 Tab pages *new-tab-pages* 307 Tab pages *new-tab-pages*
308 --------- 308 ---------
309 309
310 A tab page is page with one or more windows with a label (aka tab) at the top. 310 A tab page is a page with one or more windows with a label (aka tab) at the top.
311 By clicking on the label you can quickly switch between the tab pages. And 311 By clicking on the label you can quickly switch between the tab pages. And
312 with the keyboard, using the |gt| (Goto Tab) command. This is a convenient 312 with the keyboard, using the |gt| (Goto Tab) command. This is a convenient
313 way to work with many windows. 313 way to work with many windows.
314 314
315 To start Vim with each file argument in a separate tab page use the |-p| 315 To start Vim with each file argument in a separate tab page use the |-p|
2761 Motif: default to using XpmAttributes instead of XpmAttributes_21. 2761 Motif: default to using XpmAttributes instead of XpmAttributes_21.
2762 2762
2763 A few more changes for 64 bit MS-Windows. (George Reilly) 2763 A few more changes for 64 bit MS-Windows. (George Reilly)
2764 2764
2765 Got ml_get errors when doing "o" and selecting in other window where there are 2765 Got ml_get errors when doing "o" and selecting in other window where there are
2766 less line shorter than the cursor position in the other window. ins_mouse() 2766 less lines shorter than the cursor position in the other window. ins_mouse()
2767 was using position in wrong window. 2767 was using position in wrong window.
2768 2768
2769 Win32 GUI: Crash when giving a lot of messages during startup. Allocate twice 2769 Win32 GUI: Crash when giving a lot of messages during startup. Allocate twice
2770 as much memory for the dialog template. 2770 as much memory for the dialog template.
2771 2771
2941 GUI: when doing completion and there is one match and still searching for 2941 GUI: when doing completion and there is one match and still searching for
2942 another, the cursor was displayed at the end of the line instead of after the 2942 another, the cursor was displayed at the end of the line instead of after the
2943 match. Now show the cursor after the match while still searching for matches. 2943 match. Now show the cursor after the match while still searching for matches.
2944 2944
2945 GUI: The mouse shape changed on the statusline even when 'mouse' was empty and 2945 GUI: The mouse shape changed on the statusline even when 'mouse' was empty and
2946 they can't be dragged.. 2946 they can't be dragged.
2947 2947
2948 GTK2: Selecting a button in the confirm() dialog with Tab or cursor keys and 2948 GTK2: Selecting a button in the confirm() dialog with Tab or cursor keys and
2949 hitting Enter didn't select that button. Removed GTK 1 specific code. (Neil 2949 hitting Enter didn't select that button. Removed GTK 1 specific code. (Neil
2950 Bird) 2950 Bird)
2951 2951
7431 Time out after a couple of seconds to avoid a hang when the 7431 Time out after a couple of seconds to avoid a hang when the
7432 selection owner isn't responding. 7432 selection owner isn't responding.
7433 Files: src/ui.c 7433 Files: src/ui.c
7434 7434
7435 Patch 7.2.014 7435 Patch 7.2.014
7436 Problem: synstack() doesn't work in an emptly line. 7436 Problem: synstack() doesn't work in an empty line.
7437 Solution: Accept column zero as a valid position. 7437 Solution: Accept column zero as a valid position.
7438 Files: src/eval.c 7438 Files: src/eval.c
7439 7439
7440 Patch 7.2.015 7440 Patch 7.2.015
7441 Problem: "make all test install" doesn't stop when the test fails. (Daniel 7441 Problem: "make all test install" doesn't stop when the test fails. (Daniel
7781 Problem: Compiler warning for storing size_t in int. 7781 Problem: Compiler warning for storing size_t in int.
7782 Solution: Add type cast. 7782 Solution: Add type cast.
7783 Files: src/spell.c 7783 Files: src/spell.c
7784 7784
7785 Patch 7.2.070 7785 Patch 7.2.070
7786 Problem: Crash when a function returns a:000. (Matt Wozkiski) 7786 Problem: Crash when a function returns a:000. (Matt Wozniski)
7787 Solution: Don't put the function struct on the stack, allocate it. Free it 7787 Solution: Don't put the function struct on the stack, allocate it. Free it
7788 only when nothing in it is used. 7788 only when nothing in it is used.
7789 Files: src/eval.c 7789 Files: src/eval.c
7790 7790
7791 Patch 7.2.071 (extra) 7791 Patch 7.2.071 (extra)
7878 Files: src/if_python.c 7878 Files: src/if_python.c
7879 7879
7880 Patch 7.2.085 7880 Patch 7.2.085
7881 Problem: ":set <M-b>=<Esc>b" does not work when 'encoding' is utf-8. 7881 Problem: ":set <M-b>=<Esc>b" does not work when 'encoding' is utf-8.
7882 Solution: Put the <M-b> character in the input buffer as valid utf-8. 7882 Solution: Put the <M-b> character in the input buffer as valid utf-8.
7883 (partly by Matt Wosniski) 7883 (partly by Matt Wozniski)
7884 Files: src/term.c 7884 Files: src/term.c
7885 7885
7886 Patch 7.2.086 7886 Patch 7.2.086
7887 Problem: Using ":diffget 1" in buffer 1 corrupts the text. 7887 Problem: Using ":diffget 1" in buffer 1 corrupts the text.
7888 Solution: Don't do anything when source and destination of ":diffget" or 7888 Solution: Don't do anything when source and destination of ":diffget" or
7889 ":diffput" is the same buffer. (Dominique Pelle) 7889 ":diffput" is the same buffer. (Dominique Pelle)
7890 Files: src/diff.c 7890 Files: src/diff.c
7891 7891
7892 Patch 7.2.087 7892 Patch 7.2.087
7893 Problem: Adding URL to 'path' doesn't work to edit a file. 7893 Problem: Adding URL to 'path' doesn't work to edit a file.
7894 Solution: Skip simplify_filename() for URLs. (Matt Wosniski) 7894 Solution: Skip simplify_filename() for URLs. (Matt Wozniski)
7895 Files: src/misc2.c 7895 Files: src/misc2.c
7896 7896
7897 Patch 7.2.088 (extra) 7897 Patch 7.2.088 (extra)
7898 Problem: OpenClipboard() may fail when another application is using the 7898 Problem: OpenClipboard() may fail when another application is using the
7899 clipboard. 7899 clipboard.
8007 with pointers larger than int. 8007 with pointers larger than int.
8008 Files: src/spell.c 8008 Files: src/spell.c
8009 8009
8010 Patch 7.2.107 8010 Patch 7.2.107
8011 Problem: When using a GUI dialog and ":echo" commands the messages are 8011 Problem: When using a GUI dialog and ":echo" commands the messages are
8012 deleted after the dialog. (Vicent Birebent) 8012 deleted after the dialog. (Vincent Birebent)
8013 Solution: Don't call msg_end_prompt() since there was no prompt. 8013 Solution: Don't call msg_end_prompt() since there was no prompt.
8014 Files: src/message.c 8014 Files: src/message.c
8015 8015
8016 Patch 7.2.108 (after 7.2.105) 8016 Patch 7.2.108 (after 7.2.105)
8017 Problem: Can't build without the diff feature. 8017 Problem: Can't build without the diff feature.
8601 Problem: Win32: Can't build with Visual Studio 2010 beta 1. 8601 Problem: Win32: Can't build with Visual Studio 2010 beta 1.
8602 Solution: Fix the makefile. (George Reilly) 8602 Solution: Fix the makefile. (George Reilly)
8603 Files: src/Make_mvc.mak 8603 Files: src/Make_mvc.mak
8604 8604
8605 Patch 7.2.205 (extra) 8605 Patch 7.2.205 (extra)
8606 Problem: Win32: No support for High DPI awarenes. 8606 Problem: Win32: No support for High DPI awareness.
8607 Solution: Fix the manifest file. (George Reilly) 8607 Solution: Fix the manifest file. (George Reilly)
8608 Files: src/Make_mvc.mak, src/gvim.exe.mnf 8608 Files: src/Make_mvc.mak, src/gvim.exe.mnf
8609 8609
8610 Patch 7.2.206 8610 Patch 7.2.206
8611 Problem: Win32: Can't build netbeans interface with Visual Studio 2010. 8611 Problem: Win32: Can't build netbeans interface with Visual Studio 2010.
9298 Files: src/misc1.c 9298 Files: src/misc1.c
9299 9299
9300 Patch 7.2.327 9300 Patch 7.2.327
9301 Problem: Unused functions in Workshop. 9301 Problem: Unused functions in Workshop.
9302 Solution: Add "#if 0" and minor cleanup. (Dominique Pelle) 9302 Solution: Add "#if 0" and minor cleanup. (Dominique Pelle)
9303 Files: src/workshop.c, src/integration.c, src/ingegration.h 9303 Files: src/workshop.c, src/integration.c, src/integration.h
9304 9304
9305 Patch 7.2.328 9305 Patch 7.2.328
9306 Problem: has("win64") does not return 1 on 64 bit MS-Windows version. 9306 Problem: has("win64") does not return 1 on 64 bit MS-Windows version.
9307 Solution: Also check for _WIN64 besides WIN64. 9307 Solution: Also check for _WIN64 besides WIN64.
9308 Files: src/eval.c 9308 Files: src/eval.c
9761 Solution: Reset sub_nsubs and sub_nlines in global_exe(). 9761 Solution: Reset sub_nsubs and sub_nlines in global_exe().
9762 Files: src/ex_cmds.c 9762 Files: src/ex_cmds.c
9763 9763
9764 Patch 7.2.410 9764 Patch 7.2.410
9765 Problem: Highlighting directories for completion doesn't work properly. 9765 Problem: Highlighting directories for completion doesn't work properly.
9766 Solution: Don't halve backslashes when not needed, expaned "~/". 9766 Solution: Don't halve backslashes when not needed, expanded "~/".
9767 (Dominique Pelle) 9767 (Dominique Pelle)
9768 Files: src/ex_getln.c 9768 Files: src/ex_getln.c
9769 9769
9770 Patch 7.2.411 9770 Patch 7.2.411
9771 Problem: When parsing 'cino' a comma isn't skipped properly. 9771 Problem: When parsing 'cino' a comma isn't skipped properly.
10017 10017
10018 Fixed MSVC makefile use of /Wp64 flag. 10018 Fixed MSVC makefile use of /Wp64 flag.
10019 10019
10020 Correct use of long instead of off_t for file size. (James Vega) 10020 Correct use of long instead of off_t for file size. (James Vega)
10021 10021
10022 Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle) 10022 Add a few #ifdefs to exclude functions that are not used. (Dominique Pelle)
10023 10023
10024 Remove old and unused method to allocate memory for undo. 10024 Remove old and unused method to allocate memory for undo.
10025 10025
10026 Fix definition of UINT_PTR for 64 bit systems. 10026 Fix definition of UINT_PTR for 64 bit systems.
10027 10027