-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from Myzel394/add-vboxsf
- Loading branch information
Showing
3 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package commondocumentation | ||
|
||
import docvalues "config-lsp/doc-values" | ||
|
||
var VboxsfDocumentationAssignable = docvalues.MergeKeyEnumAssignmentMaps(FatDocumentationAssignable, map[docvalues.EnumString]docvalues.DeprecatedValue{ | ||
docvalues.CreateEnumStringWithDoc( | ||
"iocharset", | ||
"This option sets the character set used for I/O operations. Note that on Linux guests, if the iocharset option is not specified, then the Guest Additions driver will attempt to use the character set specified by the CONFIG_NLS_DEFAULT kernel option. If this option is not set either, then UTF-8 is used.", | ||
): docvalues.EnumValue{ | ||
EnforceValues: true, | ||
Values: AvailableCharsets, | ||
}, | ||
docvalues.CreateEnumStringWithDoc( | ||
"convertcp", | ||
"This option specifies the character set used for the shared folder name. This is UTF-8 by default.", | ||
): docvalues.EnumValue{ | ||
EnforceValues: true, | ||
Values: AvailableCharsets, | ||
}, | ||
}) | ||
|
||
var VboxsfDocumentationEnums = []docvalues.EnumString{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters