> lines 228-229
// TODO: Create the project_data with the name of the folder
let mut project_data = ProjectData::new("...");
When the program is called for example in a project whose parent folder is called mycproj the project name
should be set to mycproj, from the moment from a command like rlcount . its impossible to get that info,
using something like pwd will do the trick but you know There must be a rusty way to do this
> lines 228-229When the program is called for example in a project whose parent folder is called
mycprojthe project nameshould be set to
mycproj, from the moment from a command likerlcount .its impossible to get that info,using something like pwd will do the trick but you know
There must be a rusty way to do this