This website works better with JavaScript.
Home
Explore
Help
Sign In
Immanuel
/
nnn
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Recognize End/Home keys for editing
master
Jens Guenther
5 years ago
parent
09b713aa25
commit
e856df277c
1 changed files
with
6 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
src/nnn.c
+ 6
- 0
src/nnn.c
View File
@@ -1766,6 +1766,12 @@ static char *xreadline(char *prefill, char *prompt)
--len;
--len;
}
}
break;
break;
case KEY_END:
pos = len;
break;
case KEY_HOME:
pos = 0;
break;
default:
default:
break;
break;
}
}
Write
Preview
Loading…
Cancel
Save