-
Notifications
You must be signed in to change notification settings - Fork 135
Bidi CCSID Support via Extension Settings #2826
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
ede0868
3b2f2b7
68fd689
2cf82bb
d7b7870
50dbcd7
42e41b6
499b202
dc1800a
04b0578
c868a78
b8acf1e
7cac2e0
d13c845
d538f0c
402a91e
b056541
c036b79
071f968
966d3a7
1899834
efcac9e
b872ed2
e98228b
541c778
2c9a24d
b559531
c387fb8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,6 +16,9 @@ export interface ConnectionConfig extends ConnectionProfile { | |
| hideCompileErrors: string[]; | ||
| enableSourceDates: boolean; | ||
| sourceDateGutter: boolean; | ||
| ccsidConversionEnabled: boolean; | ||
| ccsidConvertFrom: string; | ||
| ccsidConvertTo: string; | ||
|
Comment on lines
+19
to
+21
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Default values for these three fields must be provided here (ince it's missing, it's producing an error): |
||
| encodingFor5250: string; | ||
| terminalFor5250: string; | ||
| setDeviceNameFor5250: boolean; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Return an object instead of an array here. An object directly gives a view of what is being returned by the function. An array doesn't and forces whoever uses the function to look at its description to figure out what's returned.
The return type should be: