yi-0.7.2: The Haskell-Scriptable Editor

Safe HaskellNone

Yi.PersistentState

Description

This module implements persistence across different Yi runs. It includes minibuffer command history, marks, VimTagStack etc. Warning: Current version will _not_ check whether two or more instances of Yi are run at the same time.

Synopsis

Documentation

loadPersistentState :: YiM ()Source

Loads a persistent state, and sets Yi state variables accordingly.

savePersistentState :: YiM ()Source

Here is a persistent history saving part. We assume each command is a single line. To add new components, one has to:

  • add new field in PersistentState structure, * add write and read parts in loadPersistentState/savePersistentState, * add a trimming code in savePersistentState to prevent blowing up of save file.