We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d89226 commit b96ea95Copy full SHA for b96ea95
src/main.cpp
@@ -1,6 +1,6 @@
1
/*
2
- * multitool++
3
- * main.cpp
+ * multitool++ - a command line utility for various purposes
+ * Author: [email protected]
4
*/
5
#include <iostream>
6
#include <string>
@@ -185,7 +185,8 @@ void read() {
185
/* Removed this line below since it looks bad. */
186
//std::cout << ansi::CYAN << "Validating choice... " << ansi::RESET;
187
188
- /* This is the least efficient way to do it, but i don't want to use things like ncurses. */
+ /* Horrific, janky W/S navigation. I should have used ncurses instead of writing this garbage. */
189
+ /* But it works... */
190
if (check == 'w' || check == 'W') {
191
if (checked2 == "[x]") {
192
checked2 = "[ ]";
0 commit comments