Skip to content

Commit f7c5660

Browse files
authored
Improve docs for objectscript.export.folder setting (#986)
1 parent d9bea3f commit f7c5660

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/SettingsReference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ The extensions in the InterSystems ObjectScript Extension Pack provide many sett
5757
| `"objectscript.export.dontExportIfNoChanges"` | Do not rewrite the local file if the content is identical to what came from the server. | `boolean` | `false` | |
5858
| `"objectscript.export.exactFilter"` | SQL filter to limit what to export. | `string` | `""` | The filter is applied to document names using the [LIKE predicate](https://irisdocs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=RSQL_like) (i.e. `Name LIKE 'exactFilter'`). If provided, `objectscript.export.filter` is ignored. |
5959
| `"objectscript.export.filter"` | SQL filter to limit what to export. | `string` | `""` | The filter is applied to document names using the [LIKE predicate](https://irisdocs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=RSQL_like) (i.e. `Name LIKE '%filter%'`). |
60-
| `"objectscript.export.folder"` | Folder for exported source code within workspace. | `string` | `"src"` | |
60+
| `"objectscript.export.folder"` | Folder for exported source code within workspace. | `string` | `"src"` | This setting is relative to the workspace folder root. |
6161
| `"objectscript.export.generated"` | Export generated source code files, such as INTs generated from classes. | `boolean` | `false` | |
6262
| `"objectscript.export.map"` | Map file names before export, with regexp pattern as a key and replacement as a value. | `object` | `{}` | For example, `{ \"%(.*)\": \"_$1\" }` to make % classes or routines use underscore prefix instead. |
6363
| `"objectscript.export.mapped"` | Export source code files mapped from a non-default database. | `boolean` | `true` | |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1104,7 +1104,7 @@
11041104
},
11051105
"properties": {
11061106
"folder": {
1107-
"description": "Folder for exported source code within workspace.",
1107+
"description": "Folder for exported source code within workspace. This setting is relative to the workspace folder root.",
11081108
"type": "string"
11091109
},
11101110
"addCategory": {

0 commit comments

Comments
 (0)