def set_timeout(f, timeout_ms = 0): """ Schedules a function to be called in the future. Sublime Text will block while the function is running """ sublime_api.set_timeout(f, timeout_ms)
def set_timeout(f, timeout_ms=0): """ Schedules a function to be called in the future. Sublime Text will block while the function is running """ sublime_api.set_timeout(f, timeout_ms)