T.v.Dein
T.v.Dein
**Is your feature request related to a problem? Please describe.** Say I want to join 2 lists (ls output in this case) horizontally, then it looks like this: ```default gum...
**Describe the bug** I am using bubbles/viewport which shows text colored using lipgloss. Basically I colorize the text like this: ```go buf.WriteString(conf.Colors.Body.Render(content.Body)) ``` `buf` is a `strings.Builder`, which I later...
Many programs show a short help message with `-h` and a detailed one with `--help`. Currently cobra handles both options in the same way. Is it possible to change this...
This PR implements [#213](https://github.com/Evertras/bubble-table/issues/213) and adds support for literal token matches. It also replaces the inline fuzzy filter function with a more mature function of the module github.com/lithammer/fuzzysearch.
(I don't know if bubbletea uses the term tick, but I assume it, because the ELM model suggests so) I have a weird issue: I wanted to have a blinking...
This is something `fzf` has implemented, which is very handy. Precede a filter token with the quote character to make the matching literal. E.g.: `'prod fsog` ... searches for literal...
Is it possible to update table data at runtime? I want to add certain interactive features (just like visidata does), for example: change the sort order, remove columns, add dynamic...
Here's how I setup my column headers: ```go // setup column data for idx, header := range data.headers { columns[idx] = table.NewFlexColumn(strings.ToLower(header), header, lengths[idx]).WithFiltered(true).WithStyle(Highlighted) } filtertbl := FilterTable{ maxColumns: len(data.headers),...
I want to use `shift+down` and `shift+up` to scroll through the preview pane. But gh-dash does not respond to those keys, although bubbletea defines them. **To Reproduce** ```yaml keybindings: universal:...
This PR adds a global flag `--debug, -d` and an initializer for an `slog` logger. This can be used to add debug code anywhere one needs it. I added some...