Giter VIP home page Giter VIP logo

elscreen-persist's Introduction

usage

This makes elscreen persistent.

To use this, use customize to turn on elscreen-persist-mode or add the following line somewhere in your init file:

(elscreen-persist-mode 1)

Or manually, use elscreen-persist-store to store, and use elscreen-persist-restore to restore.

work with desktop

You can use desktop to restore frames.

When desktop restored frames, elscreen-persist doesn't restore any frame. The behavior occurs when desktop is enabled and desktop-restore-frames is t(default).

elscreen-persist restores all buffers, so desktop doesn't have to save the buffers.

(setq desktop-files-not-to-save "")

work with desktop using "desktop-globals-to-save"

You can use desktop like explained above (it is more simple and quick to setup). Or you can use it like explained here (a little bit more setup) to use it in conjunction with e.g. bookmark or desktop+. So you dont want to get two files on disk (the desktop-file and the elscreen-file) and you want to save files anywhere on disc.

(defcustom desktop-data-elscreen nil nil
  :type 'list
  :group 'desktop)

(defun desktop-prepare-data-elscreen! ()
  (setq desktop-data-elscreen
        (elscreen-persist-get-data)))

(defun desktop-evaluate-data-elscreen! ()
  (when desktop-data-elscreen
    (elscreen-persist-set-data desktop-data-elscreen)))

(add-hook 'desktop-after-read-hook 'desktop-evaluate-data-elscreen!)
(add-hook 'desktop-save-hook 'desktop-prepare-data-elscreen!)
(add-to-list 'desktop-globals-to-save 'desktop-data-elscreen)

(setq desktop-files-not-to-save "")
(setq desktop-restore-frames nil)

elscreen-persist's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.