From 951831aa73ffc7c179441f52b43de7dcea0e941f Mon Sep 17 00:00:00 2001 From: Xavier Brasher Date: Mon, 15 Jul 2024 15:59:43 +0800 Subject: [PATCH 1/3] Update README.md to show example of how to implement follow URL on windows --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b255ba690..ca4e21f6d 100644 --- a/README.md +++ b/README.md @@ -397,6 +397,7 @@ This is a complete list of all of the options that can be passed to `require("ob -- Open the URL in the default web browser. vim.fn.jobstart({"open", url}) -- Mac OS -- vim.fn.jobstart({"xdg-open", url}) -- linux + -- vim.cmd(':silent exec "!start ' .. url .. '"') -- Windows end, -- Optional, set to true if you use the Obsidian Advanced URI plugin. From f6c56c56250c06cb48156d3f075556ad8da5cfa4 Mon Sep 17 00:00:00 2001 From: Xavier Brasher Date: Mon, 15 Jul 2024 16:08:03 +0800 Subject: [PATCH 2/3] Update obsidian.txt --- doc/obsidian.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/obsidian.txt b/doc/obsidian.txt index b91ff4596..cac71a05d 100644 --- a/doc/obsidian.txt +++ b/doc/obsidian.txt @@ -453,6 +453,7 @@ carefully and customize it to your needs: -- Open the URL in the default web browser. vim.fn.jobstart({"open", url}) -- Mac OS -- vim.fn.jobstart({"xdg-open", url}) -- linux + -- vim.cmd(':silent exec "!start ' .. url .. '"') -- Windows end, -- Optional, set to true if you use the Obsidian Advanced URI plugin. From d0c3290025b4dbc4087504c23670bd5c1ace5ac8 Mon Sep 17 00:00:00 2001 From: Pete Walsh Date: Wed, 17 Jul 2024 11:03:58 -0700 Subject: [PATCH 3/3] Update doc/obsidian.txt --- doc/obsidian.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/obsidian.txt b/doc/obsidian.txt index cac71a05d..b91ff4596 100644 --- a/doc/obsidian.txt +++ b/doc/obsidian.txt @@ -453,7 +453,6 @@ carefully and customize it to your needs: -- Open the URL in the default web browser. vim.fn.jobstart({"open", url}) -- Mac OS -- vim.fn.jobstart({"xdg-open", url}) -- linux - -- vim.cmd(':silent exec "!start ' .. url .. '"') -- Windows end, -- Optional, set to true if you use the Obsidian Advanced URI plugin.