Pranav
Pranav
> If `timetrace start project` has not been stopped yet should this ongoing period be ignored in the report or be included? I think it would make sense to give...
@jwnpoh Maybe for .Short to appear in the docs, you might need to [customize](https://github.com/spf13/cobra/blob/master/doc/md_docs.md#customize-the-output) it.
Hey guys! I've been observing the conversation, however, I've been busy for a while, so couldn't help in anything. Borrowing from @Kevin-Mok's idea, using [Cobra's man page creation](https://github.com/spf13/cobra/blob/master/doc/man_docs.md) for generating...
I have experience of only reading man pages 😅. But creating them seems doable by looking at the API. I'll try.
Sorry, it's taking longer than expected. But hope we'll get this done. 🙂
I am close to generating the type of man pages we need, but I can't figure out what to put in the GenManHeader struct (https://pkg.go.dev/github.com/spf13/cobra/doc#GenManHeader). Can I get some help?...
Check out this script: ```go package main import ( "log" "github.com/dominikbraun/timetrace/cli" "github.com/dominikbraun/timetrace/config" "github.com/dominikbraun/timetrace/core" "github.com/dominikbraun/timetrace/fs" "github.com/spf13/cobra/doc" ) var version = "UNDEFINED" func main() { timetraceStub := core.New(&config.Config{}, &fs.Fs{}) cmd := cli.RootCommand(timetraceStub,...
What do you guys think of using WebAssembly ([WASI](https://wasi.dev/), to be specific) for the plugins?
`promptui` will complement Cobra nicely. I'm currently working with `bubbletea` and Cobra, so I have little to say about them. But I'll definitely put my opinion here after trying them...
We can get `Row` and `Col`, but I am not sure how can we get `Xpixel` and `Ypixel`. What do these two represent? The resolution of the terminal or something...