0
0
mirror of https://github.com/vim/vim.git synced 2025-09-30 04:44:14 -04:00

Minor typo and docs update.

This commit is contained in:
Bram Moolenaar
2010-06-12 06:46:44 +02:00
parent f9b0129f5f
commit 97ea511bbf
3 changed files with 23 additions and 13 deletions

View File

@@ -458,9 +458,7 @@ are obtained through the 'gtk-config' shell script.
If you want to build with GTK+ 2 support pass the --enable-gtk2-check argument If you want to build with GTK+ 2 support pass the --enable-gtk2-check argument
to ./configure. Optionally, support for GNOME 2 will be compiled if the to ./configure. Optionally, support for GNOME 2 will be compiled if the
--enable-gnome-check option is also given. Note that the support for GTK+ 2 --enable-gnome-check option is also given.
is still experimental. However, many people have reported that it works just
fine for them.
Otherwise, if you are using Motif or Athena, when you have the Motif or Athena Otherwise, if you are using Motif or Athena, when you have the Motif or Athena
files in a directory where configure doesn't look, edit the Makefile to enter files in a directory where configure doesn't look, edit the Makefile to enter
@@ -468,15 +466,12 @@ the names of the directories. Search for "GUI_INC_LOC" for an example to set
the Motif directories, "CONF_OPT_X" for Athena. the Motif directories, "CONF_OPT_X" for Athena.
*gui-x11-gtk* *gui-x11-gtk*
At the time of this writing, you may use either GTK+ version 1.0.6 or 1.2. It At the time of this writing, GTK+ version 1.0.6 and 1.2 are outdated. It
is suggested that you use v1.2 since not all of Vim's GUI features are present is suggested that you use GTK 2. The GTK 1 support will most likely be
if using v1.0.6. For instance, there are no tearoff menus present in v1.0.6. dropped soon.
Using a version from GTK+'s CVS tree may or may not work, and is therefore not
supported and not recommended.
For the experimental GTK+ 2 GUI, using the latest release of the GTK+ 2.0 or For the GTK+ 2 GUI, using the latest release of the GTK+ 2.0 or GTK+ 2.2
GTK+ 2.2 series is recommended. CVS HEAD seems to work fine most of time as series is recommended.
well.
Lastly, although GTK+ has supposedly been ported to the Win32 platform, this Lastly, although GTK+ has supposedly been ported to the Win32 platform, this
has not been tested with Vim and is also unsupported. Also, it's unlikely to has not been tested with Vim and is also unsupported. Also, it's unlikely to

View File

@@ -30,7 +30,13 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs* *known-bugs*
-------------------- Known bugs and current work ----------------------- -------------------- Known bugs and current work -----------------------
internal error hash_add() (Peter Odding)
:set tags=/tmp/bad_tags
:call taglist('.')
Also with one line tags file. (Lech Lorens, Jun 9)
gtk_selection_clear_targets not available in GTK1 (Patrick Texier) gtk_selection_clear_targets not available in GTK1 (Patrick Texier)
Use #ifdefs to use old code for GTK1.
Cursor positioning wrong with 0x200e character. (John Becket, 2010 May 6) Cursor positioning wrong with 0x200e character. (John Becket, 2010 May 6)
@@ -125,6 +131,9 @@ Slow combination of folding and PHP syntax highlighting. Script to reproduce
it. Caused by "syntax sync fromstart" in combination with patch 7.2.274. it. Caused by "syntax sync fromstart" in combination with patch 7.2.274.
(Christian Brabandt, 2010 May 27) (Christian Brabandt, 2010 May 27)
When completion inserts the first match, it may trigger the line to be folded.
Disable updating folds while completion is active? (Peter Odding, 2010 Jun 9)
In command line window ":close" doesn't work properly. (Tony Mechelynck, 2009 In command line window ":close" doesn't work properly. (Tony Mechelynck, 2009
Jun 1) Jun 1)
@@ -1084,6 +1093,7 @@ restored. (Luc St-Louis)
Vim 7.3: Vim 7.3:
- crash when reloading file. (Namsh, 2010 Jun 11)
- using NSIS 2.46: install on Windows 7 works, but no "Edit with Vim" menu. - using NSIS 2.46: install on Windows 7 works, but no "Edit with Vim" menu.
Use register_shell_extension()? (George Reilly, 2010 May 26) Use register_shell_extension()? (George Reilly, 2010 May 26)
Ron's version: http://dev.ronware.org/p/vim/finfo?name=gvim.nsi Ron's version: http://dev.ronware.org/p/vim/finfo?name=gvim.nsi
@@ -1107,7 +1117,10 @@ Vim 7.3:
Show "file saved" marker in :undolist Show "file saved" marker in :undolist
Function to get undo tree: undotree(). List of lists. Each entry is a Function to get undo tree: undotree(). List of lists. Each entry is a
dictionary: {'nr': 2, 'time': 1234, 'saved': 1} dictionary: {'nr': 2, 'time': 1234, 'saved': 1}
- Remove support for GTK 1? - Patch for conceal feature and 'foldcolumn'. (Dominique Pelle, 2010 Jun 10,
second patch)
- patch for conceal feature and 'modifiable'. (Dominique Pelle, 2010 Jun 9)
- Remove support for GTK 1? Patch by James Vega, Jun 11.
Patches to include: Patches to include:
- Patch for Lisp support with ECL (Mikael Jansson, 2008 Oct 25) - Patch for Lisp support with ECL (Mikael Jansson, 2008 Oct 25)
- Minor patches from Dominique Pelle, 2010 May 15 - Minor patches from Dominique Pelle, 2010 May 15
@@ -1116,6 +1129,8 @@ Patches to include:
- Patch to support clipboard for Mac terminal. (Jjgod Jiang, 2009 Aug 1) - Patch to support clipboard for Mac terminal. (Jjgod Jiang, 2009 Aug 1)
- Patch to support :browse for more commands. (Lech Lorens, 2009 Jul 18) - Patch to support :browse for more commands. (Lech Lorens, 2009 Jul 18)
- Patch to improve javascript indenting. (Hari Kumar G, 2010 May 22) - Patch to improve javascript indenting. (Hari Kumar G, 2010 May 22)
- Patch to make CTRL-L work better with 'ignorecase' and 'smarcase'. (Martin
Toft, 2010 Jun 8)
- Patch to add diff functionality to 2html.vim. (Christian Brabandt, 2009 Dec - Patch to add diff functionality to 2html.vim. (Christian Brabandt, 2009 Dec
15) 15)
- Win32: patch for better font scaling. (George Reilly, 2009 Mar 26) - Win32: patch for better font scaling. (George Reilly, 2009 Mar 26)

View File

@@ -1279,7 +1279,7 @@ u_write_undo(name, forceit, buf, hash)
if (buf->b_u_numhead == 0 && buf->b_u_line_ptr == NULL) if (buf->b_u_numhead == 0 && buf->b_u_line_ptr == NULL)
{ {
if (p_verbose > 0) if (p_verbose > 0)
verb_msg((char_u *)_("Skipping undo file write, noting to undo")); verb_msg((char_u *)_("Skipping undo file write, nothing to undo"));
goto theend; goto theend;
} }