VENE_LOCAL

This commit is contained in:
Venelin Dechkov
2026-07-30 13:03:29 +03:00
parent 9dc4646559
commit 71ee58ed76
3 changed files with 14 additions and 7 deletions
+8 -5
View File
@@ -303,13 +303,11 @@ extern "C"
Cmd list_dirs ("ls", bm_root.c_str());
// Initial bookmark directory
string dir = "Luxoft";
while(true)
{
// Choose bookmark directory
string dir = $(list_dirs | dmenu);
if( dir.empty() )
return;
string bm_dir = bm_root + dir;
// Read content of bookmarks file and choose
@@ -323,6 +321,11 @@ extern "C"
detach(open_bookmark);
break;
}
// Choose bookmark directory
dir = $(list_dirs | dmenu);
if( dir.empty() )
return;
}
}