Code Monkey home page Code Monkey logo

rlcount's People

Contributors

cdecompilador avatar gabivlj avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

gabivlj

rlcount's Issues

Get the project name, just get the folder name

> 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

Support more languages...

To do this, two things in the code must be modified:

1. The Function that returns the language name given the extension

fn get_language_name<'a>(extension: &'a str) -> &'a str {
    match extension {
        "rs" => "Rust",
        "c" => "C",
        "cpp" | "cxx" | "c++" => "C++",
        "py" => "Python",
        "js" | "jsx" => "Javascript",
        "ts" => "Typescript",
        _ => {
            println!("Uknown file extension: {}", extension);
            "Uknown"
        },
         // TODO: Add more
    }
}

2. Edit the constant KNWON_EXTENSION_BINDINGS

const KNOWN_EXTENSIONS_BINDINGS: &[(&str, &[&str])] = &[
    ("rs", &["//", "/*", "*/"]),
    ("c", &["//", "/*", "*/"]),
    ("cpp", &["//", "/*", "*/"]),("c++", &["//", "/*", "*/"]),("cxx", &["//", "/*", "*/"]),
    ("py", &["#", "\"\"\"", "\"\"\""]),
    ("js", &["//", "/*", "*/"]),("jsx", &["//", "/*", "*/"]),
    ("ts", &["//", "/*", "*/"]),
    // TODO: Add more...
];

The upgrade of grouping this two things in just one is also allowed, and probably done in the future

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.