Skip to content

Commit b04b0ae

Browse files
authored
Merge pull request elfmz#2643 from unxed/homekey
Allow using Ctrl+' as an alternative to Ctrl+`
2 parents d8afd89 + 882b409 commit b04b0ae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

far2l/src/panels/filelist.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1333,7 +1333,9 @@ int FileList::ProcessKey(FarKey Key)
13331333
return TRUE;
13341334
}
13351335

1336-
case KEY_CTRL | '`': {
1336+
case KEY_CTRL | '`':
1337+
case KEY_CTRL | '\'':
1338+
{
13371339
SetLocation_Directory(CachedHomeDir());
13381340
return TRUE;
13391341
}

0 commit comments

Comments
 (0)