mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
chore(common-documentation): Move files
This commit is contained in:
parent
1a91942f71
commit
2433974c25
@ -2,7 +2,7 @@ package commondocumentation
|
||||
|
||||
import docvalues "config-lsp/doc-values"
|
||||
|
||||
var CharsetsDocumentation = []docvalues.EnumString{
|
||||
var AvailableCharsets = []docvalues.EnumString{
|
||||
docvalues.CreateEnumStringWithDoc(
|
||||
"ascii",
|
||||
`ASCII (American Standard Code For Information Interchange) is the
|
@ -1,6 +1,8 @@
|
||||
package commondocumentation
|
||||
|
||||
import docvalues "config-lsp/doc-values"
|
||||
import (
|
||||
docvalues "config-lsp/doc-values"
|
||||
)
|
||||
|
||||
var FatDocumentationAssignable = map[docvalues.EnumString]docvalues.Value{
|
||||
docvalues.CreateEnumStringWithDoc(
|
||||
@ -104,8 +106,10 @@ var FatDocumentationAssignable = map[docvalues.EnumString]docvalues.Value{
|
||||
docvalues.CreateEnumStringWithDoc(
|
||||
"iocharset",
|
||||
"Character set to use for converting between 8 bit characters and 16 bit Unicode characters. The default is iso8859-1. Long filenames are stored on disk in Unicode format.",
|
||||
// TODO: Use enum for charsets
|
||||
): docvalues.StringValue{},
|
||||
): docvalues.EnumValue{
|
||||
EnforceValues: true,
|
||||
Values: AvailableCharsets,
|
||||
},
|
||||
docvalues.CreateEnumStringWithDoc(
|
||||
"nfs",
|
||||
`Enable this only if you want to export the FAT filesystem over NFS.
|
Loading…
x
Reference in New Issue
Block a user