54 lines
981 B
Go
54 lines
981 B
Go
package config
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"path/filepath"
|
|
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
// K9sHotKeys manages K9s hotKeys.
|
|
var K9sHotKeys = filepath.Join(K9sHome, "hotkey.yml")
|
|
|
|
// HotKeys represents a collection of plugins.
|
|
type HotKeys struct {
|
|
HotKey map[string]HotKey `yaml:"hotKey"`
|
|
}
|
|
|
|
// HotKey describes a K9s hotkey.
|
|
type HotKey struct {
|
|
ShortCut string `yaml:"shortCut"`
|
|
Description string `yaml:"description"`
|
|
Command string `yaml:"command"`
|
|
}
|
|
|
|
// NewHotKeys returns a new plugin.
|
|
func NewHotKeys() HotKeys {
|
|
return HotKeys{
|
|
HotKey: make(map[string]HotKey),
|
|
}
|
|
}
|
|
|
|
// Load K9s plugins.
|
|
func (h HotKeys) Load() error {
|
|
return h.LoadHotKeys(K9sHotKeys)
|
|
}
|
|
|
|
// LoadHotKeys loads plugins from a given file.
|
|
func (h HotKeys) LoadHotKeys(path string) error {
|
|
f, err := ioutil.ReadFile(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var hh HotKeys
|
|
if err := yaml.Unmarshal(f, &hh); err != nil {
|
|
return err
|
|
}
|
|
for k, v := range hh.HotKey {
|
|
h.HotKey[k] = v
|
|
}
|
|
|
|
return nil
|
|
}
|