From 67cce59f4e155116de1893a6f13d3b7b51bcfc82 Mon Sep 17 00:00:00 2001 From: Carlo Stemberger Date: Thu, 22 Oct 2020 06:09:35 +0200 Subject: [PATCH] Avoid regex convention in script documentation --- share/scripts/README | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/share/scripts/README b/share/scripts/README index ef2de5c9c4..ecd752a4d0 100644 --- a/share/scripts/README +++ b/share/scripts/README @@ -8,19 +8,19 @@ https://github.com/Ardour/ardour/tree/master/share/scripts Script Naming conventions: -^_ +_ A script filename with a leading underscore indicates an example script. These scripts are only available from ardour's git repository and not installed nor included with binary bundles. -^__ +__ Scripts with a filename starting with two underscores are excluded from unit-tests. This is currently the case for convolver, fluidsynth and plugin-modulation. They depend on external files (soundfont, impulse-response) or a specific session-setup (plugin-modulation needs an automatable plugin). -^s_ +s_ A filename beginning with "s_" indicates a code snippet. These scripts can only be used in the interactive interpreter (Window > Scripting). They may be useful by themselves or handy for copy/edit @@ -28,5 +28,5 @@ Script Naming conventions: The filename prefix is only for convenience, "type" = "Snippet" is used when scripts are listed at runtime. -^_-*.lua +_-*.lua git ignores those. Intended for local/custom dev scripts or work in progress.