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
ddd300af
Commit
ddd300af
authored
7 years ago
by
David Lawrence Ramsey
Committed by
Benno Schulenberg
7 years ago
Browse files
Options
Download
Email Patches
Plain Diff
help: allow firstline and lastline to work at the search prompt
This addresses
https://savannah.gnu.org/bugs/?52257
.
parent
d344c3d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/global.c
+2
-2
src/global.c
with
2 additions
and
2 deletions
+2
-2
src/global.c
View file @
ddd300af
...
...
@@ -1275,8 +1275,8 @@ void shortcut_init(void)
add_to_sclist
(
MWHEREIS
|
MREPLACE
,
"M-R"
,
0
,
regexp_void
,
0
);
add_to_sclist
(
MWHEREIS
|
MREPLACE
,
"M-B"
,
0
,
backwards_void
,
0
);
add_to_sclist
(
MWHEREIS
|
MREPLACE
,
"^R"
,
0
,
flip_replace
,
0
);
add_to_sclist
(
MWHEREIS
|
MREPLACE
|
MREPLACEWITH
|
MGOTOLINE
,
"^Y"
,
0
,
do_first_line
,
0
);
add_to_sclist
(
MWHEREIS
|
MREPLACE
|
MREPLACEWITH
|
MGOTOLINE
,
"^V"
,
0
,
do_last_line
,
0
);
add_to_sclist
(
MWHEREIS
|
MREPLACE
|
MREPLACEWITH
|
MGOTOLINE
|
MFINDINHELP
,
"^Y"
,
0
,
do_first_line
,
0
);
add_to_sclist
(
MWHEREIS
|
MREPLACE
|
MREPLACEWITH
|
MGOTOLINE
|
MFINDINHELP
,
"^V"
,
0
,
do_last_line
,
0
);
#ifndef DISABLE_JUSTIFY
add_to_sclist
(
MWHEREIS
|
MREPLACE
|
MREPLACEWITH
,
"^W"
,
0
,
do_para_begin_void
,
0
);
add_to_sclist
(
MWHEREIS
|
MREPLACE
|
MREPLACEWITH
,
"^O"
,
0
,
do_para_end_void
,
0
);
...
...
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