Rihards Skuja
Rihards Skuja
Another workaround (requires python-i3ipc): `blocks/title` ```python #!/usr/bin/env python import i3ipc def print_window_title(container): print(container.name if container.name is not None else "", flush=True) def on_window_focus(i3, e): print_window_title(e.container) i3 = i3ipc.Connection() print_window_title(i3.get_tree().find_focused()) i3.on("window::focus",...
@mliszcz Stumbled upon the same issue. Once possible workaround is to define a custom block which serves as a separator: ```json "custom/separator": { "format": "|", "interval": "once", "tooltip": false },...
After bisecting it appears that the issue was introduced in 318e1dff9720b5c7abffc05b1bcbf231c2f1ad38
Same issue. 0.3 (61) on Arch Linux. Keyboard works fine but using mouse shows just 0.
My guess is that the issue affects any syntax file that uses `\s`. On NeoVIM v0.5.0: `foo.vim` ```vim syn match fooComment "^\s*#.*$" hi def link fooComment Comment ``` `init.vim`: ```vim...