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

We should improve the CI testing coverage by doing: - [ ] switch to the official cmake action by github and add testing for multiple compile targets (Release, debug) -...

enhancement

We should add support for the fmt library since it advertises a much better performance than iostream. https://github.com/fmtlib/fmt

enhancement

We should look into ways on improving the printing performance for the windows console. things to look into: - [ ] using cerr as it's unbuffered (needs testing) - [...

enhancement

We should implement options to disable colors when the programs runs non-interactively.

enhancement

@flagarde That pull request addresses the use of an unnamed pipe to read input stream in a program that uses the cpp_terminal library, as mentioned in issue [#320](https://github.com/jupyter-xeus/cpp-terminal/issues/320). It introduces...

Hello, I'd like to present a use case that I'm currently working on. I'm trying to create a program that changes the color of some words based on a defined...

While inspecting and changeing the files: https://github.com/jupyter-xeus/cpp-terminal/blob/master/cpp-terminal/key.cpp https://github.com/jupyter-xeus/cpp-terminal/blob/master/cpp-terminal/key.hpp I noticed the following possible error: ```C++ Key::Value::q + MetaKey::Value::Ctrl == Key::Value::Ctrl_Q; // returns false ``` The addition adds a flag bit...

Hi I'm using cpp-terminal to program a small text editor where I want to perform some programming experiments, and also to contribute to the library as a user. I'm glad...

I noticed that if in the terminal properties (windows cmd and powershell) if I turn off 'properties>layout>wrap text output on resize' and I resize the window in a way where...

In my editor I wanted to use the key combinations Ctrl + J/I/L/K to move the cursor left/up/right/down. Kind of like WASD in computer games but with the other hand....