1
0
forked from x/icebergs
icebergs/misc/vim/sess.go
2022-12-12 19:42:06 +08:00

23 lines
378 B
Go

package vim
import (
ice "shylinux.com/x/icebergs"
"shylinux.com/x/icebergs/base/web"
)
const (
SID = "sid"
ARG = "arg"
SUB = "sub"
PRE = "pre"
PWD = "pwd"
BUF = "buf"
ROW = "row"
COL = "col"
)
const SESS = "sess"
func init() {
Index.MergeCommands(ice.Commands{web.WEB_LOGIN: {Hand: func(m *ice.Message, arg ...string) { m.Cmdy("web.code.bash._login", arg) }}})
}