You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm sorry I'm not a developer, so I will just describe how I've done that:
1) Add to config.h:
// Go Open
#define KEY_OPENFILE ';'
2) Change cf.c:
-- add (after //Go to child directory around line 2307):
// Open file
case KEY_OPENFILE:
goOpen();
break;
-- add (after function "void goForward() around line 1966):
/*
Opens a file
*/
void goOpen()
{
if(len_preview == -1)
{
// Open file
openFile(next_dir);
clearFlag = 1;
}
}
-- delete the following lines from goForward function:
else
{
// Open file
openFile(next_dir);
clearFlag = 1;
}
The text was updated successfully, but these errors were encountered:
I'm sorry I'm not a developer, so I will just describe how I've done that:
The text was updated successfully, but these errors were encountered: