bzbug
bzbug
This is my gray scrollbar, the black part is the page's background:  The scroll button that's all in plain gray is displayed over the patterned...
Suggestions: 1. For every area that is generally (or might be) considered 'separate' by the user create its own minimum list of properties: - background color - text color So,...
1. What exactly is a mailbox? Is it a local folder or a remote folder? Does it matter? How exactly does folder syncing works with IMAP? Like, suppose I have...
The User Guide right now is closer to a reference than to a guide for beginners. It talks a lot about secondary details and additional features for configuration before the...
Not sure I get how it works, since there's no documentation on it for `vis`, but is it true that currently there's no way to treat `vis` buffers as `vim`...
Terminal: st `change-256colors` option: ```lua vis.events.subscribe(vis.events.INIT, function() vis:command('set change-256colors on') end) ``` # What I do Set `back:#501b2a` color for `vis.lexers.STYLE_TYPE`, according to https://github.com/martanne/vis/issues/356#issuecomment-269948730: > A quick check is to...
New feature: indent guides (orange for parent, red for ancestor) 
Trying to implement vim-like `` `. `` behaviour (jumps to last edited place): ```lua -- jump to last edit place on backtick (`) vis.events.subscribe(vis.events.INPUT, function(key) vis:feedkeys('z') end) vis:map(vis.modes.NORMAL, '`', 'z')...
# Problem ```lua vis.lexers.STYLE_CURSOR = 'back:#cccc00,fore:#000000' -- back: acid yellow, fore: black ``` Background changed, foreground stays light. Which means I can't manually set a light background for the cursor...
Ability to restore viewport like with cursor position.