1. use BufWinEnter,
instead of BufEnter;
1.1. it is being trigger
when the user switches between buffers,
as well as when buffers
are populated first time from vim session
into window panes;
1. disable filetype plugin;
2. add import into beta.py augroup;
3. add ++nested for BufEnter,
but at the end, just disable filetype
plugin;
since can't figure out the way
to override its effect;
1. some refactor for nginx_config.py;
1.1. just tested
that ssl-app can correctly
show a remote_addr;
1.1.1 TODO,
figure out how to preserve this info
when doing proxy_pass
to ssl app; (hm, seems like no way);
2. exposed ssl-app port
at SSL_APP_PORTS endpoint;
1. fetch sensitive configs,
mark telegram to prevent sway idle, when fullscreen;
2. update oom_firefox tool,
to support custom worker_regex, main_regex;
3. update .whl for pr34;
1. add l keybinding
to change in realtime cgroup max memory limit;
2. make sure keybindings are not working
when a dialog is opened;
3. make sure the app correctly handles Ctrl+C;
4. improve logging format, include a timestamp
and line locatin;
1. configure for_window in sway config
to inhibit-idle when they are fullscreen;
tried idlehack-git, but not sure
whether it's bugger, stick to for_window for now;
1. fix rss being in KiB;
2. get rid of --slice, use --unit-name;
3. fix columns strings being cut,
use two calls to ps,
to get full cmd and cgroup;
4. tested manually that it works;
1. add few random scripts;
1.1. systemd_gtk, oom_firefox
are vibe coded initially;
oom_firefox is useful,
but migrated to ps subprocess
manually;
since psutils is very inefficient,
puts too much load on CPU;
1. handle escape character;
2. handle items filtering
based on entered letters;
3. redraw UI when the filter
changes;
4. TODO
handle selection changes via arrows, hjkl;
5. TODO
handle selection after Enter has been pressed;
1. add filter callback;
1.1. partially
added recording of pressed keys;
1.2. TODO,
handle esape to close the window;
handle to select the entry;
handle hjkl, arrows
to change the selection;
handle pressed keys otherwise, ideally
after i has been pressed,
or handle hjkl after escape has been presed;
to restrict entries to the matching pattern
visualize current filter, and ins/normal mode
in the popup title;
1. remove duplicate logic from beta,
that is present in main;
2. fix init for FastSelect;
3. implement last recently
used ordering for buffers selection;
1. switch to file logging
with rotation;
2. test that at 100ms callback
execution UI looks fast;
3. test that <C-p> hotkey
makes the switcher popu;
3.1. TODO,
select some better
switching UI component;
should support a list of more buffers
than fit into the screen;
should support some real time
filtering via regex;
1. refactor python vim module;
1.1. experiment
with fast select based on popup in vim,
and multi threaded app in python;
1.2. TODO,
figure out some thread safe way
to call vim.command from python side threads;
1.3. update pydantic validate params;