| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-10-25 | Remove redundant comparison operators | Maxime Coste | |
| Since C++20 (a != b) get automatically rewritten as !(a == b) if the != operator does not exist. | |||
| 2023-03-15 | Remove && from the template parameter given to declval | Sidharth Kshatriya | |
| It seems redundant as declval already returns a rvalue reference | |||
| 2021-07-09 | Avoid copying token content strings in expand_token | Maxime Coste | |
| We can move that data instead of copying | |||
| 2020-05-10 | Support piping data to client stdin | Maxime Coste | |
| Pass the client stdin fd to the server and open a fifo buffer from it. Fixes #3394 | |||
| 2019-11-09 | Add static or const where useful | Jason Felice | |
| 2019-04-01 | Add Optional::map and Optional::cast methods | Maxime Coste | |
| Cool kids call that monadic interface if I understood correctly. | |||
| 2019-01-03 | Add Optional::value_or_compute for lazy computation of default value | Maxime Coste | |
| 2017-09-01 | Code style tweak in optional.hh | Maxime Coste | |
| 2017-06-16 | Hide info/menu when they are anchored to an invisible buffer coord | Maxime Coste | |
| Fixes #1444 | |||
| 2017-01-08 | Apply clang-tidy modernize to the codebase | Maxime Coste | |
| 2016-09-04 | Rework client quitting and handling of remote errors | Maxime Coste | |
| Client quitting no longer immediately unwinds, client is just pushed for deletion until we get back to the main loop, similarly to what happens for buffer and window deletion. | |||
| 2016-07-04 | Refactor Optional::operator== | Maxime Coste | |
| 2016-06-22 | Add an Optional::emplace method | Maxime Coste | |
| 2015-07-10 | Use a named struct Empty in optional | Maxime Coste | |
| 2015-06-25 | Avoid unneeded default constructor call in Optional | Maxime Coste | |
| 2015-05-01 | Add str_to_int_ifp that returns an Optional<int> instead of throwing | Maxime Coste | |
| 2015-04-15 | Optional: put the bool m_valid after the content to improve packing | Maxime Coste | |
| 2015-03-14 | Change ParameterParser switch interface, use an Optional<StringView> | Maxime Coste | |
| Merge has_option and option_value into a single method get_switch. | |||
| 2014-12-25 | Minor code tweak in optional.hh | Maxime Coste | |
| 2014-12-23 | Remove trailing blank lines | Maxime Coste | |
| 2014-10-28 | Add noexcept spec to move constructor and move assign | Maxime Coste | |
| 2014-08-19 | Add support for operator== to Optional | Maxime Coste | |
| 2014-06-27 | Replace boost::optional with our own implementation | Maxime Coste | |
