preview/markdown-preview: convert mkdp_filetypes to correct format

This commit is contained in:
NotAShelf 2024-12-16 01:16:56 +03:00
parent a0a57757a0
commit 2c1c30c48d
No known key found for this signature in database
GPG key ID: AF26552424E53993

View file

@ -4,8 +4,10 @@
lib,
...
}: let
inherit (lib.strings) concatMapStringsSep;
inherit (lib.modules) mkIf;
inherit (lib.strings) concatMapStringsSep;
inherit (lib.generators) mkLuaInline;
cfg = config.vim.utility.preview.markdownPreview;
in {
config = mkIf cfg.enable {
@ -15,7 +17,7 @@ in {
mkdp_auto_start = cfg.autoStart;
mkdp_auto_close = cfg.autoClose;
mkdp_refresh_slow = cfg.lazyRefresh;
mkdp_filetypes = [(concatMapStringsSep ", " (x: "'" + x + "'") cfg.filetypes)];
mkdp_filetypes = mkLuaInline ''[${concatMapStringsSep ", " (x: "'" + x + "'") cfg.filetypes}]'';
mkdp_command_for_global = cfg.alwaysAllowPreview;
mkdp_open_to_the_world = cfg.broadcastServer;
mkdp_open_ip = cfg.customIP;