Documentation ¶
Overview ¶
package config exposes application specific configurations and sessions. Sessions store ephemeral things such as last window position, last view, and recent file list, etc. Configurations store more long lasting things such as user preferences.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Session ¶
type Session struct { X int `json:"x"` Y int `json:"y"` Width int `json:"width"` Height int `json:"height"` Title string `json:"title"` LastRoute string `json:"lastRoute"` LastTab string `json:"lastTab"` LastAddress string `json:"lastAddress"` LastSeries string `json:"lastSeries"` LastHelp string `json:"lastHelp"` Daemons Daemons `json:"daemons"` }
Session stores ephemeral things such as last window position, last view, and recent file
func NewSession ¶
func NewSession() Session
Click to show internal directories.
Click to hide internal directories.