From 9f243f09c92db79f2b517b86fa3acb96934f51ef Mon Sep 17 00:00:00 2001 From: Christian Morpurgo Date: Thu, 24 Apr 2025 20:11:19 +0200 Subject: [PATCH] fix --- MarkdownLivePreview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MarkdownLivePreview.py b/MarkdownLivePreview.py index c37f94f..cac236a 100644 --- a/MarkdownLivePreview.py +++ b/MarkdownLivePreview.py @@ -51,7 +51,7 @@ def plugin_loaded(): resources["stylesheet"] = get_resource("stylesheet.css") # FIXME: how could we make this setting update without restarting sublime text # and not loading it every update as well - DELAY = get_settings().get(SETTING_DELAY_BETWEEN_UPDATES) + DELAY = get_settings().get(SETTING_DELAY_BETWEEN_UPDATES, 100) # Provide default class MdlpInsertCommand(sublime_plugin.TextCommand):