Reorganize info bar

This commit is contained in:
Zachary Yedidia
2019-01-01 22:36:12 -05:00
parent 78ce7a5f0f
commit c01995c1b6
8 changed files with 57 additions and 44 deletions

View File

@@ -10,7 +10,7 @@ import (
// LoadHistory attempts to load user history from configDir/buffers/history
// into the history map
// The savehistory option must be on
func (i *Bar) LoadHistory() {
func (i *InfoBuf) LoadHistory() {
if config.GetGlobalOption("savehistory").(bool) {
file, err := os.Open(config.ConfigDir + "/buffers/history")
defer file.Close()
@@ -37,7 +37,7 @@ func (i *Bar) LoadHistory() {
// SaveHistory saves the user's command history to configDir/buffers/history
// only if the savehistory option is on
func (i *Bar) SaveHistory() {
func (i *InfoBuf) SaveHistory() {
if config.GetGlobalOption("savehistory").(bool) {
// Don't save history past 100
for k, v := range i.History {