mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
Merge pull request #28 from Myzel394/add-vboxsf
This commit is contained in:
commit
a32900cef8
22
server/common-documentation/mnt-vboxsf.go
Normal file
22
server/common-documentation/mnt-vboxsf.go
Normal file
@ -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{}
|
@ -470,6 +470,10 @@ var MountOptionsMapField = map[string]optionField{
|
|||||||
Enums: commondocumentation.UmsdosDocumentationEnums,
|
Enums: commondocumentation.UmsdosDocumentationEnums,
|
||||||
Assignable: commondocumentation.UmsdosDocumentationAssignable,
|
Assignable: commondocumentation.UmsdosDocumentationAssignable,
|
||||||
},
|
},
|
||||||
|
"vboxsf": {
|
||||||
|
Enums: commondocumentation.VboxsfDocumentationEnums,
|
||||||
|
Assignable: commondocumentation.VboxsfDocumentationAssignable,
|
||||||
|
},
|
||||||
"vfat": {
|
"vfat": {
|
||||||
Enums: commondocumentation.VfatDocumentationEnums,
|
Enums: commondocumentation.VfatDocumentationEnums,
|
||||||
Assignable: commondocumentation.VfatDocumentationAssignable,
|
Assignable: commondocumentation.VfatDocumentationAssignable,
|
||||||
|
@ -8,7 +8,7 @@ type LanguageOverwrite struct {
|
|||||||
Language SupportedLanguage
|
Language SupportedLanguage
|
||||||
|
|
||||||
// The start of the overwrite
|
// The start of the overwrite
|
||||||
Raw string
|
Raw string
|
||||||
Line uint32
|
Line uint32
|
||||||
Character uint32
|
Character uint32
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user