Delete everything except lines containing string
Replace last occurrence in line
Run command in all Neovim instances
Requires neovim-remote.
%v/\(keep1\|keep2\)/d
%g!/\(keep1\|keep2\)/d
" Replace last space with comma
%s/.*\zs /,/gc
Requires neovim-remote.
# Switch all neovim instances to light theme
$ for f in $(nvr --serverlist); do nvr --servername $f --remote-send ':set bg=light<cr>'; done