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
8cfdc0df
Commit
8cfdc0df
authored
17 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.1a
parent
da65f156
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/main.c
+6
-2
6 additions, 2 deletions
src/main.c
src/proto/menu.pro
+20
-20
20 additions, 20 deletions
src/proto/menu.pro
src/ui.c
+1
-1
1 addition, 1 deletion
src/ui.c
with
27 additions
and
23 deletions
src/main.c
+
6
−
2
View file @
8cfdc0df
...
...
@@ -2948,7 +2948,7 @@ usage()
mch_msg
(
_
(
"
\n
or:"
));
}
#ifdef VMS
mch_msg
(
_
(
"
w
here case is ignored prepend / to make flag upper case"
));
mch_msg
(
_
(
"
\n
W
here case is ignored prepend / to make flag upper case"
));
#endif
mch_msg
(
_
(
"
\n\n
Arguments:
\n
"
));
...
...
@@ -2981,8 +2981,10 @@ usage()
#endif
main_msg
(
_
(
"-C
\t\t\t
Compatible with Vi: 'compatible'"
));
main_msg
(
_
(
"-N
\t\t\t
Not fully Vi compatible: 'nocompatible'"
));
main_msg
(
_
(
"-V[N]
\t\t
Verbose level"
));
main_msg
(
_
(
"-V[N][fname]
\t\t
Be verbose [level N] [log messages to fname]"
));
#ifdef FEAT_EVAL
main_msg
(
_
(
"-D
\t\t\t
Debugging mode"
));
#endif
main_msg
(
_
(
"-n
\t\t\t
No swap file, use memory only"
));
main_msg
(
_
(
"-r
\t\t\t
List swap files and exit"
));
main_msg
(
_
(
"-r (with file name)
\t
Recover crashed session"
));
...
...
@@ -3006,9 +3008,11 @@ usage()
main_msg
(
_
(
"-U <gvimrc>
\t\t
Use <gvimrc> instead of any .gvimrc"
));
#endif
main_msg
(
_
(
"--noplugin
\t\t
Don't load plugin scripts"
));
#ifdef FEAT_WINDOWS
main_msg
(
_
(
"-p[N]
\t\t
Open N tab pages (default: one for each file)"
));
main_msg
(
_
(
"-o[N]
\t\t
Open N windows (default: one for each file)"
));
main_msg
(
_
(
"-O[N]
\t\t
Like -o but split vertically"
));
#endif
main_msg
(
_
(
"+
\t\t\t
Start at end of file"
));
main_msg
(
_
(
"+<lnum>
\t\t
Start at line <lnum>"
));
main_msg
(
_
(
"--cmd <command>
\t
Execute <command> before loading any vimrc file"
));
...
...
This diff is collapsed.
Click to expand it.
src/proto/menu.pro
+
20
−
20
View file @
8cfdc0df
/*
menu.c
*/
extern
void
ex_menu
__ARGS
((
exarg_T
*
eap
));
extern
char_u
*
set_context_in_menu_cmd
__ARGS
((
expand_T
*
xp
,
char_u
*
cmd
,
char_u
*
arg
,
int
forceit
));
extern
char_u
*
get_menu_name
__ARGS
((
expand_T
*
xp
,
int
idx
));
extern
char_u
*
get_menu_names
__ARGS
((
expand_T
*
xp
,
int
idx
));
extern
char_u
*
menu_name_skip
__ARGS
((
char_u
*
name
));
extern
int
get_menu_index
__ARGS
((
vimmenu_T
*
menu
,
int
state
));
extern
int
menu_is_menubar
__ARGS
((
char_u
*
name
));
extern
int
menu_is_popup
__ARGS
((
char_u
*
name
));
extern
int
menu_is_child_of_popup
__ARGS
((
vimmenu_T
*
menu
));
extern
int
menu_is_toolbar
__ARGS
((
char_u
*
name
));
extern
int
menu_is_separator
__ARGS
((
char_u
*
name
));
extern
int
check_menu_pointer
__ARGS
((
vimmenu_T
*
root
,
vimmenu_T
*
menu_to_check
));
extern
void
gui_create_initial_menus
__ARGS
((
vimmenu_T
*
menu
));
extern
void
gui_update_menus
__ARGS
((
int
modes
));
extern
int
gui_is_menu_shortcut
__ARGS
((
int
key
));
extern
void
gui_show_popupmenu
__ARGS
((
void
));
extern
void
gui_mch_toggle_tearoffs
__ARGS
((
int
enable
));
extern
void
ex_emenu
__ARGS
((
exarg_T
*
eap
));
extern
vimmenu_T
*
gui_find_menu
__ARGS
((
char_u
*
path_name
));
extern
void
ex_menutranslate
__ARGS
((
exarg_T
*
eap
));
void
ex_menu
__ARGS
((
exarg_T
*
eap
));
char_u
*
set_context_in_menu_cmd
__ARGS
((
expand_T
*
xp
,
char_u
*
cmd
,
char_u
*
arg
,
int
forceit
));
char_u
*
get_menu_name
__ARGS
((
expand_T
*
xp
,
int
idx
));
char_u
*
get_menu_names
__ARGS
((
expand_T
*
xp
,
int
idx
));
char_u
*
menu_name_skip
__ARGS
((
char_u
*
name
));
int
get_menu_index
__ARGS
((
vimmenu_T
*
menu
,
int
state
));
int
menu_is_menubar
__ARGS
((
char_u
*
name
));
int
menu_is_popup
__ARGS
((
char_u
*
name
));
int
menu_is_child_of_popup
__ARGS
((
vimmenu_T
*
menu
));
int
menu_is_toolbar
__ARGS
((
char_u
*
name
));
int
menu_is_separator
__ARGS
((
char_u
*
name
));
int
check_menu_pointer
__ARGS
((
vimmenu_T
*
root
,
vimmenu_T
*
menu_to_check
));
void
gui_create_initial_menus
__ARGS
((
vimmenu_T
*
menu
));
void
gui_update_menus
__ARGS
((
int
modes
));
int
gui_is_menu_shortcut
__ARGS
((
int
key
));
void
gui_show_popupmenu
__ARGS
((
void
));
void
gui_mch_toggle_tearoffs
__ARGS
((
int
enable
));
void
ex_emenu
__ARGS
((
exarg_T
*
eap
));
vimmenu_T
*
gui_find_menu
__ARGS
((
char_u
*
path_name
));
void
ex_menutranslate
__ARGS
((
exarg_T
*
eap
));
/*
vim: set ft=c :
*/
This diff is collapsed.
Click to expand it.
src/ui.c
+
1
−
1
View file @
8cfdc0df
...
...
@@ -2734,7 +2734,7 @@ retnomove:
/* When dragging the mouse, while the text has been scrolled up as
* far as it goes, moving the mouse in the top line should scroll
* the text down (done later when recomputing w_topline). */
if
(
mouse_dragging
if
(
mouse_dragging
>
0
&&
curwin
->
w_cursor
.
lnum
==
curwin
->
w_buffer
->
b_ml
.
ml_line_count
&&
curwin
->
w_cursor
.
lnum
==
curwin
->
w_topline
)
...
...
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