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
0739a1e6
Commit
0739a1e6
authored
18 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.0-189
parent
8c471fa0
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/edit.c
+8
-6
8 additions, 6 deletions
src/edit.c
src/version.c
+2
-0
2 additions, 0 deletions
src/version.c
with
10 additions
and
6 deletions
src/edit.c
+
8
−
6
View file @
0739a1e6
...
...
@@ -4970,16 +4970,18 @@ ins_complete(c)
* just a safety check. */
if
(
compl_curr_match
->
cp_number
!=
-
1
)
{
/* Space for 10 text chars. + 2x10-digit no.s */
static
char_u
match_ref
[
31
];
/* Space for 10 text chars. + 2x10-digit no.s = 31.
* Translations may need more than twice that. */
static
char_u
match_ref
[
81
];
if
(
compl_matches
>
0
)
sprintf
((
char
*
)
IObuff
,
_
(
"match %d of %d"
),
vim_snprintf
((
char
*
)
match_ref
,
sizeof
(
match_ref
),
_
(
"match %d of %d"
),
compl_curr_match
->
cp_number
,
compl_matches
);
else
s
printf
((
char
*
)
IObuff
,
_
(
"
match
%d"
),
compl_curr_match
->
cp_number
);
vim_strncpy
(
match_ref
,
IObuff
,
30
);
vim_sn
printf
((
char
*
)
match_ref
,
sizeof
(
match
_ref
),
_
(
"match %d"
),
compl_curr_match
->
cp_number
);
edit_submode_extra
=
match_ref
;
edit_submode_highl
=
HLF_R
;
if
(
dollar_vcol
)
...
...
This diff is collapsed.
Click to expand it.
src/version.c
+
2
−
0
View file @
0739a1e6
...
...
@@ -666,6 +666,8 @@ static char *(features[]) =
static
int
included_patches
[]
=
{
/* Add new patch number below this line */
/**/
189
,
/**/
188
,
/**/
...
...
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