Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-19fa
git_rec_nano
Commits
bc8bb7e9
Commit
bc8bb7e9
authored
8 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
screen: keep the help items nicely lined up also in the tiny version
parent
08cd197b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/global.c
+7
-1
src/global.c
with
7 additions
and
1 deletion
+7
-1
src/global.c
View file @
bc8bb7e9
...
...
@@ -805,10 +805,10 @@ void shortcut_init(void)
add_to_funcs
(
do_last_line
,
MMAIN
|
MHELP
|
MWHEREIS
|
MREPLACE
|
MREPLACEWITH
|
MGOTOLINE
,
N_
(
"Last Line"
),
IFSCHELP
(
nano_lastline_msg
),
BLANKAFTER
,
VIEW
);
#ifndef NANO_TINY
add_to_funcs
(
do_research
,
MMAIN
,
whereis_next_tag
,
IFSCHELP
(
nano_whereis_next_msg
),
TOGETHER
,
VIEW
);
#ifndef NANO_TINY
add_to_funcs
(
do_find_bracket
,
MMAIN
,
N_
(
"To Bracket"
),
IFSCHELP
(
nano_bracket_msg
),
TOGETHER
,
VIEW
);
...
...
@@ -888,6 +888,12 @@ void shortcut_init(void)
gotoline_tag
,
IFSCHELP
(
nano_gotoline_msg
),
BLANKAFTER
,
VIEW
);
#endif
#ifdef NANO_TINY
/* Place this one here only in the tiny version; otherwise further up. */
add_to_funcs
(
do_research
,
MMAIN
,
whereis_next_tag
,
IFSCHELP
(
nano_whereis_next_msg
),
TOGETHER
,
VIEW
);
#endif
add_to_funcs
(
do_verbatim_input
,
MMAIN
,
N_
(
"Verbatim"
),
IFSCHELP
(
nano_verbatim_msg
),
TOGETHER
,
NOVIEW
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment