cpp-terminal icon indicating copy to clipboard operation
cpp-terminal copied to clipboard

C++ library for writing multiplatform terminal applications

Results 65 cpp-terminal issues
Sort by recently updated
recently updated
newest added

MSVC shows `cl : Command line warning D9025 : overriding '/W3' with '/W4'` when compiling cpp-terminal.

bug

I am trying to write a small helper to find the background / foreground colors of a terminal. I can get hexadecimal values by asking `echo "\e]11;?\a"` I tried to...

enhancement

I have dicussed with @certik that mixing styles and colors by doing the ansi codes adter each other (like `\033[34m\033[1m`) we should combine them like `\033[1;34m` which should create the...

enhancement

* This allows construction on first use and would eliminate the need to create `Term::Terminal term` in the main program. * Downside: I'm not 100% certain this can be implemented...

documentation

That way the CI will fail if any compiler issues a warning, so that we can catch any regressions.

enhancement

The way to test it is to add the input into a file, and then redirect `stdin` from this file. An example would be a string like "Hello Wold!" and...

enhancement

And specify any caveats if any for each.

documentation

The `doctest.h` file in the root of the repository claims to be gerated by cmake - but that's a lie. I would sugest to let it really be generated by...

enhancement

I have created the release tag `V1.0.0`. Do you agree on doing it like that? or would you prefer to do it different? And do you want to make a...

enhancement

There is a problem in windows. in the menu example. when you resize the height the menu doubles up because it not clearing or over writing the full console. I...

bug