Commit ba8edea8 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Accept s and S silently to selected a file/dir

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@443 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent b0f5282d
No related merge requests found
Showing with 2 additions and 0 deletions
+2 -0
......@@ -1294,6 +1294,8 @@ char *do_browser(char *inpath)
break;
case KEY_ENTER:
case NANO_CONTROL_M:
case 's': /* More Pico compatibility */
case 'S':
/* You can't cd up from / */
if (!strcmp(filelist[selected], "/..") && !strcmp(path, "/"))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment