From 19556c61688c9b21852bc3f7b2a3a322515414a6 Mon Sep 17 00:00:00 2001 From: chipsenkbeil Date: Thu, 11 Apr 2024 02:28:38 +0000 Subject: [PATCH] Auto generate docs --- doc/org-mouse.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/org-mouse.txt b/doc/org-mouse.txt index d06d702..e706624 100644 --- a/doc/org-mouse.txt +++ b/doc/org-mouse.txt @@ -116,14 +116,14 @@ This is leveraged during setup to configure a `FileType` autocmd to attach keybindings for `` and `` to support mouse interactions. -Takes a list of strings. Defaults to `{"org", "org-roam-*"}`. +Takes a list of strings. Defaults to `{"org", "org-*"}`. Notice that the strings are in pattern format, meaning you can use wildcards to support multiple filetypes. >lua require("org-mouse"):setup({ - filetypes = { "org", "org-roam-*", "org-custom-*" }, + filetypes = { "org", "org-*", "org-custom-*" }, }) <