You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although having ordinal indexes is great, I'd like to have a visibility over buffer's number.
In order to switch to lynx.conf, I'd normally do :b <number>, but I'm confusing actual buffer number (3) with it's index (2).
Indexes (lynx.conf -> 2, README.md -> 3):
Actual numbers which can be checked with :buffers (lynx.conf -> 3, README.md -> 4):
To make it work nicely there might be options. There are some ideas:
letg:buffet_show_index=1letg:buffet_index_type="index"" defaultletg:buffet_index_type="number"" shows number INSTEAD of indexesletg:buffet_show_number=1" 0 is default
Last one I like best. What It would do is
if let g:buffet_show_index = 1 AND let g:buffet_show_number = 1, then tab would show <index> (#<number>) <title>, i.e. 2 (#3) lynx.conf
if let g:buffet_show_index = 1 AND let g:buffet_show_number = 0 then we have what we have now
if let g:buffet_show_index = 0 AND let g:buffet_show_number = 1 then tab would show #<number> <title>, i.e. #3 lynx.conf
if let g:buffet_show_index = 0 AND let g:buffet_show_number = 0 then it's obvious
The text was updated successfully, but these errors were encountered:
Nemoden
changed the title
Show buffer numbers (instead or alongside indexes) #feature-request
Show buffer numbers (instead or alongside indexes)
Mar 26, 2020
Nemoden
changed the title
Show buffer numbers (instead or alongside indexes)
Feature request: Show buffer numbers (instead or alongside indexes)
Mar 26, 2020
@Nemoden sorry for late response and thanks for filing this request while explaining the motivation and suggesting ideas 👍 It would be better to address this in the scope of #32, for which I will try to find some time in the next month.
Although having ordinal indexes is great, I'd like to have a visibility over buffer's number.
In order to switch to
lynx.conf
, I'd normally do:b <number>
, but I'm confusing actual buffer number (3) with it's index (2).Indexes (lynx.conf -> 2, README.md -> 3):
Actual numbers which can be checked with
:buffers
(lynx.conf -> 3, README.md -> 4):To make it work nicely there might be options. There are some ideas:
Last one I like best. What It would do is
let g:buffet_show_index = 1 AND let g:buffet_show_number = 1
, then tab would show<index> (#<number>) <title>
, i.e.2 (#3) lynx.conf
let g:buffet_show_index = 1 AND let g:buffet_show_number = 0
then we have what we have nowlet g:buffet_show_index = 0 AND let g:buffet_show_number = 1
then tab would show#<number> <title>
, i.e.#3 lynx.conf
let g:buffet_show_index = 0 AND let g:buffet_show_number = 0
then it's obviousThe text was updated successfully, but these errors were encountered: