Example #1
0
def run_nimcheck(file_path, callback, verbosity=2):
    # Prepare the regex's
    run_process(
        "{0} check --verbosity:{1} \"{2}\"".format(
            nim_executable, verbosity, file_path
        ),
        callback
    )
Example #2
0
def run_nimble(command, callback):
    global nimble_executable
    run_process(nimble_executable + " " + command, callback)
Example #3
0
def run_nimble(command, callback):
    global nimble_executable
    run_process(nimble_executable + " " + command, callback)
Example #4
0
def run_nimcheck(file_path, callback):
    # Prepare the regex's
    run_process(
        "{0} check --verbosity:2 \"{1}\"".format(nim_executable, file_path),
        callback)