1
0
forked from x/ContextOS
This commit is contained in:
shylinux@163.com 2022-09-19 23:07:58 +08:00
parent dfce4f8561
commit 7c0f8752b3
3 changed files with 26 additions and 2 deletions

View File

@ -17,9 +17,10 @@
config inner meta.show.tabs ""
config inner meta.show.exts "inner/search.js?a=1"
config inner meta.show.plug ""
config vimer meta.show.tabs ""
config vimer meta.show.exts "inner/search.js?a=1,inner/favor.js"
config vimer meta.show.plug "web.code.tmux.session,web.code.git.status,web.code.xterm,cli.system"
config vimer meta.show.plug "web.code.git.status,web.code.tmux.session,web.code.xterm,cli.system"
~web.code.input
# wubi load file usr/wubi-dict/wubi86

View File

@ -47,6 +47,8 @@ import (
_ "shylinux.com/x/golang-story/src/data"
_ "shylinux.com/x/golang-story/src/data/leecode"
_ "shylinux.com/x/contexts/src/h2"
)
func main() { print(ice.Run()) }

View File

@ -1,3 +1,22 @@
field "src/hi/hi.go" web.code.inner spark `
package hi
import (
"shylinux.com/x/ice"
)
type hi struct {
ice.Zone
}
func (h hi) List(m *ice.Message, arg ...string) {
h.Zone.List(m, arg...)
}
func init() { ice.Cmd("web.code.hi.hi", hi{}) }
`
return
title "contexts"
refer `
官网 https://contexts.com.cn
@ -43,3 +62,5 @@ source "usr/icebergs/misc/java/spring.shy"
source "usr/icebergs/misc/node/compile.shy"
source "usr/icebergs/misc/node/vue.shy"
source "usr/icebergs/misc/coder/coder.shy"
source h2/h2.shy