We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just like the bufline in vim and helix, it would be nice to create a segment to show opened buffers on the tabline.
The info seems to be available on %val{buflist}
%val{buflist}
Something like
[custom.kakbuflist] description = "Open buffers" format = "[ %val{buflist} ]($style)" style = "fg:white" when = '' shell = ['true'] disabled = false
this is how it looks like
Any idea on how do I make it better?
buflist
The text was updated successfully, but these errors were encountered:
Ok, I got something working
[custom.kakbuflist] description = "Open buffers" format = "[ $output ]($style)" style = "fg:white" when = 'true' shell = ['sh'] command = 'kks get -s ${kak_session##*/} %val{buflist} | grep -vE "(\*debug\*|${kak_buffile##*/})" | paste -s -d "|" ' disabled = false
requires the installation of https://github.com/kkga/kks
Looks better now
Sorry, something went wrong.
No branches or pull requests
Just like the bufline in vim and helix, it would be nice to create a segment to show opened buffers on the tabline.
The info seems to be available on
%val{buflist}
Something like
this is how it looks like
Any idea on how do I make it better?
buflist
The text was updated successfully, but these errors were encountered: