From 00c10ca496c1f5fd21f691c7f8fb8bef539cbea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ad=C3=A1m=20Brudzewsky?= Date: Thu, 22 Feb 2024 12:42:54 +0100 Subject: [PATCH] -ignoreconfig -text --- docs/API/Link.Create.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/docs/API/Link.Create.md b/docs/API/Link.Create.md index 836cdd00..84edfe28 100644 --- a/docs/API/Link.Create.md +++ b/docs/API/Link.Create.md @@ -1,7 +1,7 @@ # Link.Create ## Syntax - ]LINK.Create [ns] [-source={ns|dir|auto}] [-watch={none|ns|dir|both}] [-casecode] [-forceextensions] [-forcefilenames] [-arrays] [-sysvars] [-flatten] [-beforeread=] [-beforewrite=] [-getfilename=] [-codeextensions=] [-typeextensions=] [-fastload] [-ignoreconfig] + ]LINK.Create [ns] [-source={ns|dir|auto}] [-watch={none|ns|dir|both}] [-casecode] [-forceextensions] [-forcefilenames] [-arrays] [-sysvars] [-flatten] [-beforeread=] [-beforewrite=] [-getfilename=] [-codeextensions=] [-typeextensions=] [-fastload] [-ignoreconfig] [-text={aplan|plain}] message ← {options} ⎕SE.Link.Create (namespace directory) @@ -267,7 +267,24 @@ Side effects are (again, only at initial load time, not at subsequent events): - good: load will be significantly faster because files won't be inspected to determine their true APL name. - bad: clashing names won't be detected: files may silently overwrite each other's APL definition if they define the same APL name. -- bad: [**forceFileNames**](#forcefilenames)/[**forceExtensions**](#forcefileextensions) won't be observed +- bad: [**forceFilenames**](#forcefilenames)/[**forceExtensions**](#forceextensions) won't be observed - bad: [**beforeRead**](#beforeread) may report incorrect name class This option takes effect only when **source** is **dir**. + +### **ignoreconfig** +Default: **off** + +Ignores any Link configuration files. + +See [Configuration Files](../Usage/ConfigFiles/#the-ignoreconfig-switch) for details. + + +### **text** +Default: **aplan** + +Chooses whether plain text arrays are stored using APL Array Notation (APLAN) or as plain text files. + +`text` is a simple character vector and must be either `'aplan'` or `'plain'`. + +See [Array Formats](../Usage/Arrays/) for details.