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 )
def run_nimble(command, callback): global nimble_executable run_process(nimble_executable + " " + command, callback)
def run_nimcheck(file_path, callback): # Prepare the regex's run_process( "{0} check --verbosity:2 \"{1}\"".format(nim_executable, file_path), callback)