forked from redguardtoo/emacs.d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit-workgroups2.el
18 lines (17 loc) · 899 Bytes
/
init-workgroups2.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(setq wg-use-default-session-file nil)
;(workgroups-mode 1) ; put this one at the bottom of .emacs
;; by default, the sessions are saved in "~/.emacs_workgroups"
(autoload 'wg-create-workgroup "workgroups2" nil t)
(autoload 'wg-kill-workgroup "workgroups2" nil t)
(autoload 'wg-find-session-file "workgroups2" nil t)
(autoload 'wg-read-workgroup-name "workgroups2" nil t)
(autoload 'wg-switch-to-workgroup "workgroups2" nil t)
(autoload 'wg-switch-to-workgroup-at-index "workgroups2" nil t)
(autoload 'wg-save-session "workgroups2" nil t)
(autoload 'wg-switch-to-buffer "workgroups2" nil t)
(autoload 'wg-switch-to-workgroup-left "workgroups2" nil t)
(autoload 'wg-switch-to-workgroup-right "workgroups2" nil t)
(autoload 'wg-undo-wconfig-change "workgroups2" nil t)
(autoload 'wg-redo-wconfig-change "workgroups2" nil t)
(autoload 'wg-save-wconfig "workgroups2" nil t)
(provide 'init-workgroups2)