Things are working pretty well now

This commit is contained in:
2026-02-02 14:11:01 -06:00
parent f3c63fe95b
commit 486c07f2d4
9 changed files with 442 additions and 136 deletions

View File

@@ -22,9 +22,10 @@ THE SOFTWARE.
package data
const (
EnvPrefix = "EXPDS"
KeyConfigDir = "config"
KeyDebug = "debug"
KeyDataDir = "data"
KeyVimMode = "vimMode"
EnvPrefix = "EXPDS"
KeyConfigDir = "config"
KeyDebug = "debug"
KeyDataDir = "data"
KeyVimMode = "vimMode"
KeyRecNmInfer = "inferRecNm"
)

View File

@@ -138,7 +138,7 @@ func (p *Pds) unpack() error {
if err != nil {
return fmt.Errorf("error unmarshalling cbor (%s/%s): %w", sCol, sRKey, err)
}
p.Records[string(k)] = rec
p.Records[sRKey] = rec
if !slices.Contains(p.NSIDs, col) {
p.NSIDs = append(p.NSIDs, col)