Documentation ¶
Index ¶
- Constants
- Variables
- func FindConfig() string
- func FindDataDir() string
- type Client
- func (c *Client) Attach(node tree.Node) error
- func (c *Client) Binds() (binds []api.Binding)
- func (c *Client) Detach()
- func (c *Client) Frame() *frames.Framer
- func (c *Client) Get(key string) (value interface{}, ok bool)
- func (c *Client) GetLayout() layout.Layout
- func (c *Client) HistoryBackward() error
- func (c *Client) HistoryForward() error
- func (c *Client) Kill()
- func (c *Client) Node() tree.Node
- func (c *Client) OuterLayers() *screen.Layers
- func (c *Client) Params() *params.Parameters
- func (c *Client) Read(p []byte) (n int, err error)
- func (c *Client) Resize(size geom.Vec2) error
- func (c *Client) SetLayout(l layout.Layout) error
- func (c *Client) Toast(toast toasts.Toast)
- func (c *Client) Write(data []byte) (n int, err error)
- type ClientID
- type ClientOptions
- type Cy
- type CyModule
- func (c *CyModule) CpuProfile(user interface{}) error
- func (c *CyModule) Detach(user interface{})
- func (i *CyModule) Documentation() string
- func (c *CyModule) KillServer()
- func (c *CyModule) Paste(user interface{})
- func (c *CyModule) ReloadConfig() error
- func (c *CyModule) Trace(user interface{}) error
- type Environment
- type Options
- type ToastLogger
Constants ¶
View Source
const (
REPLAY_PROMPT = "\033Pcy\033\\\033[0;31m▸▸cy▹\033[0m \033[0;31m\033[0m\033[00m"
)
Variables ¶
View Source
var CY_BOOT embed.FS
View Source
var DOCS_CY string
Functions ¶
func FindConfig ¶ added in v0.1.13
func FindConfig() string
func FindDataDir ¶ added in v0.1.13
func FindDataDir() string
Types ¶
type Client ¶
func (*Client) Attach ¶
Attach attaches to the given node and (as distinct from attach()) adds an entry to the client's node history.
func (*Client) HistoryBackward ¶ added in v0.2.0
HistoryForward moves backward in the client's node history and attaches to the node they were attached to before the current one.
func (*Client) HistoryForward ¶ added in v0.2.0
HistoryForward moves forward in the client's node history. This has no effect if they are already at the latest entry.
func (*Client) OuterLayers ¶ added in v0.1.6
func (*Client) Params ¶ added in v0.1.6
func (c *Client) Params() *params.Parameters
func (*Client) SetLayout ¶ added in v0.4.0
SetLayout sets the layout in the client's LayoutEngine to the one provided. If the tree node the client is attached to in the layout exists, SetLayout also updates the client's bindings and params to point to that node. If it does not exist, the client uses the bindings and parameters of the root node.
type ClientOptions ¶ added in v0.1.10
type ClientOptions = P.HandshakeMessage
type Cy ¶
type Cy struct { util.Lifetime deadlock.RWMutex *janet.VM // contains filtered or unexported fields }
func NewTestServer ¶ added in v0.2.0
func (*Cy) ExecuteJanet ¶ added in v0.1.13
type CyModule ¶ added in v0.1.6
type CyModule struct {
// contains filtered or unexported fields
}
func (*CyModule) CpuProfile ¶ added in v0.7.0
func (*CyModule) Documentation ¶ added in v0.1.6
func (*CyModule) KillServer ¶ added in v0.1.6
func (c *CyModule) KillServer()
func (*CyModule) ReloadConfig ¶ added in v0.1.13
type Environment ¶ added in v0.1.6
func (Environment) Default ¶ added in v0.1.6
func (e Environment) Default(key string, defaultValue string) string
func (Environment) IsSet ¶ added in v0.1.6
func (e Environment) IsSet(key string) bool
type Options ¶
type Options struct { // The initial Janet script, typically ~/.cyrc.janet. Config string // The default directory in which to store data (e.g. recorded // sessions). DataDir string // The default shell Shell string // Whether to show the splash screen on client join HideSplash bool // Whether to skip blocking (input/*) API calls. Just for testing. SkipInput bool // The path to the Unix domain socket for this server. SocketPath string }
type ToastLogger ¶ added in v0.1.5
type ToastLogger struct {
// contains filtered or unexported fields
}
func NewToastLogger ¶ added in v0.1.5
func NewToastLogger(send func(toasts.Toast)) *ToastLogger
func (*ToastLogger) Error ¶ added in v0.1.5
func (t *ToastLogger) Error(msg string)
func (*ToastLogger) Info ¶ added in v0.1.5
func (t *ToastLogger) Info(msg string)
func (*ToastLogger) Send ¶ added in v0.1.5
func (t *ToastLogger) Send(toast toasts.Toast)
func (*ToastLogger) Warn ¶ added in v0.1.5
func (t *ToastLogger) Warn(msg string)
Source Files ¶
Click to show internal directories.
Click to hide internal directories.