Compare commits

...

2 Commits

Author SHA1 Message Date
Přemysl Eric Janouch e6ed7da395
Update README 2018-11-03 15:01:39 +01:00
Přemysl Eric Janouch c065238e75
Reliability improvement 2018-11-03 15:01:19 +01:00
2 changed files with 6 additions and 2 deletions

View File

@ -91,6 +91,8 @@ bar 16 255 ul
cwd bold
input
....
Filename colors are taken from the `LS_COLORS` environment variable.
Run 'dircolors' to get some defaults.
Similar software
----------------

View File

@ -1430,7 +1430,9 @@ int main (int argc, char *argv[]) {
if (g.cwd != g.start_dir && !g.no_chdir)
cout << "local cd=" << shell_escape (g.cwd) << endl;
if (!g.chosen.empty ())
cout << "local insert=" << shell_escape (g.chosen) << endl;
else
cout << "local cd=" << endl;
cout << "local insert=" << shell_escape (g.chosen) << endl;
return 0;
}