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