Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
b0158590
Commit
b0158590
authored
19 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.0113
parent
d8c0087c
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
runtime/doc/todo.txt
+12
-13
12 additions, 13 deletions
runtime/doc/todo.txt
src/po/cleanup.vim
+1
-1
1 addition, 1 deletion
src/po/cleanup.vim
with
13 additions
and
14 deletions
runtime/doc/todo.txt
+
12
−
13
View file @
b0158590
*todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 2
1
*todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 2
2
VIM REFERENCE MANUAL by Bram Moolenaar
VIM REFERENCE MANUAL by Bram Moolenaar
...
@@ -30,21 +30,18 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
...
@@ -30,21 +30,18 @@ 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 -----------------------
Win32: Crash when pasting Simplified Chinese in utf-8. (rainux, 2005 June 20)
Make a script to check message translations not to change the % items in
strings.
Netrw plugin problems:
Fixed
Netrw plugin problems:
- when 'autochdir' is set the current dir is wrong (Salman Halim)
- when 'autochdir' is set the current dir is wrong (Salman Halim)
- "cd -" doesn't work. (Suresh Govindachar)
- "cd -" doesn't work. (Suresh Govindachar)
Send to Charles Campbell
Mac unicode patch (Da Woon Jung):
Mac unicode patch (Da Woon Jung):
- selecting proportional font breaks display
- selecting proportional font breaks display
- UTF-8 text causes display problems. Font replacement causes this.
- UTF-8 text causes display problems. Font replacement causes this.
Should we always set LC_CTYPE to "C", so that all library functions work on
bytes? Avoids problems with sprintf() on MS-Windows. (Yongwei)
Problem noticed: tooltips are messed up. Depends on the moment 'encoding' is
changed.
Include new PHP indent script from John Wellesz?
Include new PHP indent script from John Wellesz?
http://www.vim.org/scripts/download_script.php?src_id=4330
http://www.vim.org/scripts/download_script.php?src_id=4330
...
@@ -68,6 +65,8 @@ Awaiting response:
...
@@ -68,6 +65,8 @@ Awaiting response:
mblen(NULL, 0) also in Vim 6.3?
mblen(NULL, 0) also in Vim 6.3?
Win32: Crash when pasting Simplified Chinese in utf-8. (rainux, 2005 June 20)
PLANNED FOR VERSION 7.0:
PLANNED FOR VERSION 7.0:
...
@@ -197,6 +196,10 @@ PLANNED FOR VERSION 7.0:
...
@@ -197,6 +196,10 @@ PLANNED FOR VERSION 7.0:
Mattias Flodin (2004 Jul 30)
Mattias Flodin (2004 Jul 30)
- In a :s command multi-byte characters should also be upper/lower cased
- In a :s command multi-byte characters should also be upper/lower cased
with \u, \U, etc.
with \u, \U, etc.
8 Add a command to jump to a certain kind of tag. Allow the user to specify
values for the optional fields. E.g., ":tag size type=m".
Also allow specifying the file and command, so that the result of
taglist() can be used.
Adjust src/main.aap for installing manpages like in Makefile.
Adjust src/main.aap for installing manpages like in Makefile.
...
@@ -1602,8 +1605,7 @@ Built-in script language:
...
@@ -1602,8 +1605,7 @@ Built-in script language:
.vim file. Problem: distribution.
.vim file. Problem: distribution.
3. Use a cache directory for each user. How to recognize which cached
3. Use a cache directory for each user. How to recognize which cached
file belongs to a sourced script?
file belongs to a sourced script?
7 Add "n" flag to search() function, just like searchpair(). (Alexey
7 Add "m" flag to search() and searchpair() function to set the '' mark.
Marinichev)
7 Add argument to winwidth() to subtract the space taken by 'foldcolumn',
7 Add argument to winwidth() to subtract the space taken by 'foldcolumn',
signs and/or 'number'.
signs and/or 'number'.
8 Add functions:
8 Add functions:
...
@@ -1635,7 +1637,6 @@ Built-in script language:
...
@@ -1635,7 +1637,6 @@ Built-in script language:
inputrl() like input() but right-to-left
inputrl() like input() but right-to-left
virtualmode() add argument to obtain whether "$" was used in
virtualmode() add argument to obtain whether "$" was used in
Visual block mode.
Visual block mode.
tagtype(tag) get type of tag (also checks if it exists)
getacp() Win32: get codepage (Glenn Maynard)
getacp() Win32: get codepage (Glenn Maynard)
getbufline() get line from any buffer
getbufline() get line from any buffer
deletebufline() delete line in any buffer
deletebufline() delete line in any buffer
...
@@ -1907,8 +1908,6 @@ Shared libraries:
...
@@ -1907,8 +1908,6 @@ Shared libraries:
Tags:
Tags:
8 Add a command to jump to a certain kind of tag. Allow the user to specify
values for the optional fields. E.g., ":tag size type=m".
8 Add a function that returns the line in the tags file for a matching tag.
8 Add a function that returns the line in the tags file for a matching tag.
Can be used to extract more info (class name, inheritance, etc.) (Rico
Can be used to extract more info (class name, inheritance, etc.) (Rico
Hendriks)
Hendriks)
...
...
This diff is collapsed.
Click to expand it.
src/po/cleanup.vim
+
1
−
1
View file @
b0158590
" Vim script to cleanup a .po file: comment-out fuzzy and empty messages.
" Vim script to cleanup a .po file: comment-out fuzzy and empty messages.
" Make sure there is a space before the string (required for Solaris).
" Make sure there is a space before the string (required for Solaris).
" Requires Vim 6.0 (because of multi-line search patterns).
" Requires Vim 6.0
or later
(because of multi-line search patterns).
g
/^#, fuzzy\(, .*\)\=\nmsgid ""\@!/
.+
1
,
/^$/
-1
s
/^/
#\
~
/
g
/^#, fuzzy\(, .*\)\=\nmsgid ""\@!/
.+
1
,
/^$/
-1
s
/^/
#\
~
/
g
/^msgstr"/
s
//
msgstr "/
g
/^msgstr"/
s
//
msgstr "/
g
/^msgid"/
s
//
msgid "/
g
/^msgid"/
s
//
msgid "/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment