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
cfc6c43c
Commit
cfc6c43c
authored
19 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.0081
parent
fb67026c
Loading
Loading
No related merge requests found
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
runtime/spell/en.utf-8.spl
+0
-0
0 additions, 0 deletions
runtime/spell/en.utf-8.spl
src/mark.c
+8
-4
8 additions, 4 deletions
src/mark.c
src/proto/charset.pro
+0
-7
0 additions, 7 deletions
src/proto/charset.pro
src/spell.c
+634
-153
634 additions, 153 deletions
src/spell.c
with
642 additions
and
164 deletions
runtime/spell/en.utf-8.spl
+
0
−
0
View file @
cfc6c43c
No preview for this file type
This diff is collapsed.
Click to expand it.
src/mark.c
+
8
−
4
View file @
cfc6c43c
...
...
@@ -1445,6 +1445,7 @@ removable(name)
char_u
*
p
;
char_u
part
[
51
];
int
retval
=
FALSE
;
size_t
n
;
name
=
home_replace_save
(
NULL
,
name
);
if
(
name
!=
NULL
)
...
...
@@ -1452,11 +1453,14 @@ removable(name)
for
(
p
=
p_viminfo
;
*
p
;
)
{
copy_option_part
(
&
p
,
part
,
51
,
", "
);
if
(
part
[
0
]
==
'r'
&&
MB_STRNICMP
(
part
+
1
,
name
,
STRLEN
(
part
+
1
))
==
0
)
if
(
part
[
0
]
==
'r'
)
{
retval
=
TRUE
;
break
;
n
=
STRLEN
(
part
+
1
);
if
(
MB_STRNICMP
(
part
+
1
,
name
,
n
)
==
0
)
{
retval
=
TRUE
;
break
;
}
}
}
vim_free
(
name
);
...
...
This diff is collapsed.
Click to expand it.
src/proto/charset.pro
+
0
−
7
View file @
cfc6c43c
...
...
@@ -20,13 +20,6 @@ int vim_isIDc __ARGS((int c));
int
vim_iswordc
__ARGS
((
int
c
));
int
vim_iswordp
__ARGS
((
char_u
*
p
));
int
vim_iswordc_buf
__ARGS
((
char_u
*
p
,
buf_T
*
buf
));
void
init_spell_chartab
__ARGS
((
void
));
int
set_spell_chartab
__ARGS
((
char_u
*
fol
,
char_u
*
low
,
char_u
*
upp
));
int
set_spell_charflags
__ARGS
((
char_u
*
flags
,
int
cnt
,
char_u
*
upp
));
void
write_spell_chartab
__ARGS
((
FILE
*
fd
));
int
spell_iswordc
__ARGS
((
char_u
*
p
));
int
spell_isupper
__ARGS
((
int
c
));
int
spell_casefold
__ARGS
((
char_u
*
p
,
int
len
,
char_u
*
buf
,
int
buflen
));
int
vim_isfilec
__ARGS
((
int
c
));
int
vim_isprintc
__ARGS
((
int
c
));
int
vim_isprintc_strict
__ARGS
((
int
c
));
...
...
This diff is collapsed.
Click to expand it.
src/spell.c
+
634
−
153
View file @
cfc6c43c
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