mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-13 18:07:51 +08:00
13 lines
201 B
Go
13 lines
201 B
Go
package edit
|
|
|
|
import (
|
|
"../parse"
|
|
)
|
|
|
|
var attrForType = map[parse.ItemType]string{
|
|
parse.ItemSingleQuoted: "33",
|
|
parse.ItemDoubleQuoted: "33",
|
|
parse.ItemRedirLeader: "32",
|
|
parse.ItemError: "31",
|
|
}
|