irek
irek
Hi. I did create plugin for my team at work that extends "babel-flow" parser. It's not perfect and does not follow the plugin structure with parsing then printing. But it...
I have noticed that too. It looks like `C-u` is displayed as separate command. So actually you can see that it was pressed. But yea, I would like to have...
Yea, customization for alignment seems like a good idea.
It's now possible to customize status alignment with `tb-keycast-status-align` and `tb-keycast-status-min-width`. You can try this: ```elisp (setq tb-keycast-status-align 'left) ``` Later I will add documentation to both custom vars.
With this: ```elisp (setq tab-bar-format nil) (setq tb-keycast-status-align 'left) (setq tb-keycast-status-min-width 0) ;optional (tb-keycast-mode 1) ``` you will have just tb-keycast status in tab-bar line.
I have experience similar behavior on different themes when adding `tab-bar-format-align-right` with `tab-bar-format-global` (suggested in `tab-bar-format` documentation). I'm playing with position of `tb-keycast--format` anyway. I will try to avoid using...
@yantar92 with changes from last commit (https://github.com/ir33k/tb-keycast/commit/fbf2f0c85c706d4fa8a4f03006d5ced05882d506) its align to the right based on pixels rather than on string length in characters (that's what default `tab-bar-format-align-rigth` does). With that it's...
ok, I see that this is actually the font issue described in https://github.com/ir33k/tb-keycast/issues/10 because your font in buffer is totally different and a lot smaller than font in tab-bar. >...
@yantar92 ok I think that the Emacs "hangs" on narrow frame size because kwycast status string tries to stay in one piece (avoids wrapping) but if frame is narrower than...
Hmm actually I can't reproduce "hang" issue. Even with Emacs 6 chars wide it works fine.