1
0
mirror of https://github.com/misterunknown/ifm.git synced 2025-08-10 10:04:01 +02:00

add backspace functionality: change to parent directory

This commit is contained in:
Marco Dickert
2017-07-11 15:26:58 +02:00
parent 467fec17c8
commit fb151a192c
4 changed files with 3 additions and 0 deletions

View File

@@ -1407,6 +1407,7 @@ function IFM( params ) {
break;
case 'h':
case 'ArrowLeft':
case 'Backspace':
e.preventDefault();
self.changeDirectory( '..' );
break;

Binary file not shown.

View File

@@ -1407,6 +1407,7 @@ function IFM( params ) {
break;
case 'h':
case 'ArrowLeft':
case 'Backspace':
e.preventDefault();
self.changeDirectory( '..' );
break;

View File

@@ -1095,6 +1095,7 @@ function IFM( params ) {
break;
case 'h':
case 'ArrowLeft':
case 'Backspace':
e.preventDefault();
self.changeDirectory( '..' );
break;