The Wayback Machine - https://web.archive.org/web/20211001160037/https://github.com/topics/tui
Skip to content
#

tui

Here are 902 public repositories matching this topic...

gitui
merikan
merikan commented Sep 17, 2021

Is your feature request related to a problem? Please describe.
It's not a problem but would be an improvement to avoid misunderstandings

Describe the solution you'd like
I wanted to remap the stage_item/unstage_item to Spacebar instead of Enter, so I changed

enter: ( code: Enter, modifiers: ( bits: 0,),),    

to

enter: ( code: Char(' '), modifiers: ( bits: 0,),)
metalsp0rk
metalsp0rk commented Apr 4, 2021

Describe the bug
Tags are not showing for the last entry in ticker, when scrolling is applicable.

To Reproduce
Steps to reproduce the behavior:

  1. launch with --show-tags
  2. Scroll to the bottom
  3. Observe that the last entry does not show the tags.

Expected behavior
The interface will allow you to scroll down to the very bottom.

Screenshots
![image](https://user-

mjip
mjip commented Jul 12, 2020

Is your feature request related to a problem? Please describe.
I would like for an effect to render text (or ASCII characters) from left to right, like it's being typed out.

Describe the solution you'd like
Similar to the mirage effect (where text can be rendered one character at a time, only randomly), it would be cool to have text rendered one letter at a time from left to right, so

gyscos
gyscos commented Jun 16, 2017

Vec2 is currently made of 2 usize. This means 16 bytes on x86_64, which is crazy.
A pair of u16 would probaby be enough (this puts a limit of 65k, or 32k if we used i16, which sounds enough). Or even u32/i32 would already halve the size.

The main issue is conversion with other types. We'll need to see when/how values are converted.

Improve this page

Add a description, image, and links to the tui topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the tui topic, visit your repo's landing page and select "manage topics."

Learn more