gitnu 0.0.5

gitnu indexes your git status so you can use numbers instead of filenames.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::structs::Gitnu;
use std::collections::LinkedList;
use std::process::Command;

pub fn xargs(
    mut _args: LinkedList<String>,
    _gitnu: &mut Gitnu,
) -> Command {
    let cmd = Command::new("ls");
    cmd
}