wasamasa / eyebrowse

A simple-minded way of managing window configs in emacs
GNU General Public License v3.0
437 stars 24 forks source link

always show the workspace in the bottom and never disappear. #39

Closed wqhhust closed 9 years ago

wqhhust commented 9 years ago

After I type Space+W in spacemacs, it show the workspace in the bottom as below snapshot. image

But it could be better to keep it in the bottom. I have the following bind.And then I tag each workspace, so I could easily switch between window. But if it disappear, I only know the number of the window, if it could not disappear, then I could know which window has which tag and do quick switch. (global-set-key (kbd "C-1") 'eyebrowse-switch-to-window-config-1) (global-set-key (kbd "C-2") 'eyebrowse-switch-to-window-config-2) (global-set-key (kbd "C-3") 'eyebrowse-switch-to-window-config-3) (global-set-key (kbd "C-4") 'eyebrowse-switch-to-window-config-4) (global-set-key (kbd "C-5") 'eyebrowse-switch-to-window-config-5) (global-set-key (kbd "C-6") 'eyebrowse-switch-to-window-config-6) (global-set-key (kbd "C-7") 'eyebrowse-switch-to-window-config-7)

wasamasa commented 9 years ago

Did you try customizing eyebrowse-mode-line-style?

syl20bnr commented 9 years ago

Please open the issue on Spacemacs repo first or ask on the chat ;-)

The eyebrowse layer uses micro-state instead of the mode-line, this is by design. A new modeline API will be in the next release to easily define modeline segments and place it where you want, it is available on develop as well as the documentation in DOCUMENTATION.org

wasamasa commented 9 years ago

@syl20bnr Thanks for clarification, I suspected something of this kind, but wasn't sure.

Closing.