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
1d73c885
Commit
1d73c885
authored
19 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.0088
parent
92124a33
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/message.c
+0
-13
0 additions, 13 deletions
src/message.c
src/spell.c
+711
-183
711 additions, 183 deletions
src/spell.c
src/vim.h
+1
-1
1 addition, 1 deletion
src/vim.h
with
712 additions
and
197 deletions
runtime/spell/en.utf-8.spl
+
0
−
0
View file @
1d73c885
No preview for this file type
This diff is collapsed.
Click to expand it.
src/message.c
+
0
−
13
View file @
1d73c885
...
...
@@ -1644,19 +1644,6 @@ msg_puts_title(s)
msg_puts_attr
(
s
,
hl_attr
(
HLF_T
));
}
#if defined(FEAT_CSCOPE) || defined(PROTO)
/*
* if printing a string will exceed the screen width, print "..." in the
* middle.
*/
void
msg_puts_long
(
longstr
)
char_u
*
longstr
;
{
msg_puts_long_len_attr
(
longstr
,
(
int
)
strlen
((
char
*
)
longstr
),
0
);
}
#endif
/*
* Show a message in such a way that it always fits in the line. Cut out a
* part in the middle and replace it with "..." when necessary.
...
...
This diff is collapsed.
Click to expand it.
src/spell.c
+
711
−
183
View file @
1d73c885
This diff is collapsed.
Click to expand it.
src/vim.h
+
1
−
1
View file @
1d73c885
...
...
@@ -1331,7 +1331,7 @@ enum hlf_value
#define MSG_PUTS(s) msg_puts((char_u *)(s))
#define MSG_PUTS_ATTR(s, a) msg_puts_attr((char_u *)(s), (a))
#define MSG_PUTS_TITLE(s) msg_puts_title((char_u *)(s))
#define MSG_PUTS_LONG(s) msg_puts_long((char_u *)(s))
#define MSG_PUTS_LONG(s) msg_puts_long
_attr
((char_u *)(s)
, 0
)
#define MSG_PUTS_LONG_ATTR(s, a) msg_puts_long_attr((char_u *)(s), (a))
/* Prefer using emsg3(), because perror() may send the output to the wrong
...
...
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