bzbug

Results 18 issues of bzbug

This is my gray scrollbar, the black part is the page's background: ![18x53_ 10 04 2022 21:04](https://user-images.githubusercontent.com/28236673/162630942-dd28beb7-3460-4ef5-b5da-18b04620d65f.png) The scroll button that's all in plain gray is displayed over the patterned...

enhancement
UI
upstream

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,...

enhancement
UI

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...

type:question

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...

type:bug

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) ![170x120_ 12 12 2020 17:30](https://user-images.githubusercontent.com/28236673/101985223-1fbf5980-3ca0-11eb-91d5-461c954e393b.png)

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.