1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-26 01:24:05 +08:00
icebergs/misc/vim/sess.go
2023-03-25 11:44:04 +08:00

22 lines
337 B
Go

package vim
import (
ice "shylinux.com/x/icebergs"
)
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{"_login": {Hand: func(m *ice.Message, arg ...string) { m.Cmdy("web.code.bash._login", arg) }}})
}