forked from aniani/vim
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
This commit is contained in:
@@ -1091,35 +1091,22 @@ Before (beta) release 7.3:
|
||||
|
||||
Vim 7.3:
|
||||
Patches to possibly include:
|
||||
6 In the quickfix window statusline add the command used to get the list of
|
||||
errors, e.g. ":make foo", ":grep something *.c".
|
||||
Patch by Lech Lorens, 2009 Mar 23.
|
||||
Comments from Andreas Bernauer 24th, Dominique Pelle 24th
|
||||
Docs patch by Dominique Pelle, Mar 25
|
||||
Update 2009 Mar 28.
|
||||
Fix for invalid memory access. (Lech Lorens, 2009 Apr 17)
|
||||
- Patch for colorscheme submenu. (Juergen Kraemer, 2008 Aug 20)
|
||||
- 9 Make it possible to drag a tab page label to another position with the
|
||||
mouse.
|
||||
Patch by Paul B. Mahol, 2008 Aug 29.
|
||||
- Mac: Patch to disable antialias. (LC Mi, 2008 Aug 23) Tested on 10.5 and
|
||||
10.4.
|
||||
- Patch for adding "J" flag to 'cinoptions': placement of jump label. (Manuel
|
||||
Konig, 2010 Feb 19) Update by Lech Lorens, Feb 22.
|
||||
Need another name, "J" is now used for Javascript.
|
||||
Patch by Paul B. Mahol, 2008 Aug 29.
|
||||
- Mac: Patch to disable antialias. (LC Mi, 2008 Aug 23) Tested on 10.5 and
|
||||
10.4.
|
||||
- Patch for adding "J" flag to 'cinoptions': placement of jump label. (Manuel
|
||||
Konig, 2010 Feb 19) Update by Lech Lorens, Feb 22.
|
||||
Need another name, "J" is now used for Javascript.
|
||||
- Patch for Python 3 support. (Roland Puntaier, 2009 Sep 22)
|
||||
Includes changes for omnicompletion.
|
||||
Needs some more testing.
|
||||
Update 2010 Apr 20, patch by Andy Kittner, May 16
|
||||
Build the MS-Windows version with Python 2.6.5 and 3.1.2?
|
||||
Needs some work:
|
||||
- Have a look at patch to enable screen access from Python. (Marko Mahnic,
|
||||
2010 Apr 12)
|
||||
- Patch for Python 3 support. (Roland Puntaier, 2009 Sep 22)
|
||||
Includes changes for omnicompletion.
|
||||
Needs some more testing.
|
||||
Update 2010 Apr 20, patch by Andy Kittner, May 16
|
||||
Build the MS-Windows version with Python 2.6.5 and 3.1.2?
|
||||
- Easier/standard way to disable default plugins.
|
||||
- ":{range}source": source the lines from the current file.
|
||||
You can already yank lines and use :@" to execute them.
|
||||
Most of do_source() would not be used, need a new function.
|
||||
It's easy when not doing breakpoints or profiling.
|
||||
- Have a look at patch to enable screen access from Python. (Marko Mahnic,
|
||||
2010 Apr 12)
|
||||
|
||||
|
||||
More patches:
|
||||
@@ -1161,6 +1148,12 @@ More patches:
|
||||
more friendly for the Vim distribution.
|
||||
New version received 2008 Jan 6.
|
||||
No maintenance in two years...
|
||||
6 In the quickfix window statusline add the command used to get the list of
|
||||
errors, e.g. ":make foo", ":grep something *.c".
|
||||
Patch by Lech Lorens, 2009 Apri 17.
|
||||
Comments from Andreas Bernauer 24th, Dominique Pelle 24th
|
||||
Docs patch by Dominique Pelle, Mar 25
|
||||
Can we put the strings in a window-local variable?
|
||||
|
||||
|
||||
Awaiting updated patches:
|
||||
@@ -2670,6 +2663,12 @@ Built-in script language:
|
||||
- Add ":let var ?= value", conditional assignment. Patch by Dave Eggum,
|
||||
2006 Dec 11.
|
||||
- range for ":exec", pass it on to the executed command. (Webb)
|
||||
8 ":{range}source": source the lines from the current file.
|
||||
You can already yank lines and use :@" to execute them.
|
||||
Most of do_source() would not be used, need a new function.
|
||||
It's easy when not doing breakpoints or profiling.
|
||||
Requires copying the lines into a list and then creating a function to
|
||||
execute lines from the list. Similar to getnextac().
|
||||
7 ":include" command: just like ":source" but doesn't start a new scriptID?
|
||||
Will be tricky for the list of script names.
|
||||
8 Have a look at VSEL. Would it be useful to include? (Bigham)
|
||||
|
||||
@@ -1711,15 +1711,23 @@ system administrator has dropped it in the system-wide plugin directory, but a
|
||||
user has his own plugin he wants to use. Then the user must have a chance to
|
||||
disable loading this specific plugin. This will make it possible: >
|
||||
|
||||
6 if exists("loaded_typecorr")
|
||||
6 if exists("g:loaded_typecorr")
|
||||
7 finish
|
||||
8 endif
|
||||
9 let loaded_typecorr = 1
|
||||
9 let g:loaded_typecorr = 1
|
||||
|
||||
This also avoids that when the script is loaded twice it would cause error
|
||||
messages for redefining functions and cause trouble for autocommands that are
|
||||
added twice.
|
||||
|
||||
The name is recommended to start with "loaded_" and then the file name of the
|
||||
plugin, literally. The "g:" is prepended just to avoid mistakes when using
|
||||
the variable in a function (without "g:" it would be a variable local to the
|
||||
function).
|
||||
|
||||
Using "finish" stops Vim from reading the rest of the file, it's much quicker
|
||||
than using if-endif around the whole file.
|
||||
|
||||
|
||||
MAPPING
|
||||
|
||||
@@ -1896,10 +1904,10 @@ Here is the resulting complete example: >
|
||||
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
|
||||
4 " License: This file is placed in the public domain.
|
||||
5
|
||||
6 if exists("loaded_typecorr")
|
||||
6 if exists("g:loaded_typecorr")
|
||||
7 finish
|
||||
8 endif
|
||||
9 let loaded_typecorr = 1
|
||||
9 let g:loaded_typecorr = 1
|
||||
10
|
||||
11 let s:save_cpo = &cpo
|
||||
12 set cpo&vim
|
||||
|
||||
Reference in New Issue
Block a user