mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
18 lines
414 B
Go
18 lines
414 B
Go
package commondocumentation
|
|
|
|
import (
|
|
docvalues "config-lsp/doc-values"
|
|
"config-lsp/utils"
|
|
)
|
|
|
|
var UmsdosDocumentationAssignable = utils.FilterMap(MsdosDocumentationAssignable, func(key docvalues.EnumString, value docvalues.DeprecatedValue) bool {
|
|
// `dotsOK` is explicitly not supported
|
|
if key.InsertText == "dotsOK" {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
})
|
|
|
|
var UmsdosDocumentationEnums = MsdosDocumentationEnums
|