You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "clprompter",
3
3
"displayName": "Bob Cozzi's CL Prompter for IBM i",
4
4
"description": "Bob Cozzi's CL Prompter for IBM i CL commands",
5
-
"version": "0.0.49",
5
+
"version": "0.0.50",
6
6
"author": {
7
7
"name": "Bob Cozzi",
8
8
"url": "https://github.com/bobcozzi"
@@ -104,20 +104,20 @@
104
104
"default": "${tmpdir}",
105
105
"description": "Directory where clPrompt-<cmdName>.html file is written. Use ${tmpdir} for system temp, ${userHome} for home directory, or an absolute path."
106
106
},
107
-
"clPrompter.convertToUpperCase": {
107
+
"clPrompter.convertParmValueToUpperCase": {
108
108
"type": "boolean",
109
109
"default": true,
110
-
"description": "Convert CL variables, operators (*BCAT, *TCAT, etc.), and built-in functions (%SUBST, %TRIM, etc.) to uppercase. When true, text like '&pickles *bcat %trim(x)' becomes '&PICKLES *BCAT %TRIM(x)'. When false, preserves original case. Applies to both the prompter display and final command output."
110
+
"description": "Convert CL variables, operators (*BCAT, *TCAT, etc.), and built-in functions (%SUBST, %TRIM, etc.) within parameter values to uppercase. When true, text like '&pickles *bcat %trim(x)' becomes '&PICKLES *BCAT %TRIM(x)'. When false, preserves original case. Applies when returning from the prompter."
111
111
},
112
-
"clPrompter.formatCase": {
112
+
"clPrompter.convertCmdAndParmNameCase": {
113
113
"type": "string",
114
114
"default": "*UPPER",
115
115
"enum": [
116
116
"*UPPER",
117
117
"*LOWER",
118
118
"*NONE"
119
119
],
120
-
"description": "Case conversion for CL source. *UPPER = uppercase, *LOWER = lowercase, *NONE = no change."
120
+
"description": "Case conversion for CL command names and parameter keywords. *UPPER = uppercase (CHGVAR VAR(...)), *LOWER = lowercase (chgvar var(...)), *NONE = no change. Applies when returning from the prompter and when formatting CL source."
0 commit comments