From da5ecb5de0ca0bc099258f7b77480fbb28b31392 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Sun, 9 Oct 2016 14:19:46 +0300 Subject: Add prepend before line --- editor.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'editor.cpp') diff --git a/editor.cpp b/editor.cpp index 6c86447..f8c8ade 100644 --- a/editor.cpp +++ b/editor.cpp @@ -36,7 +36,11 @@ int Editor::run_editor() { case 'a': append_after_command(); break; + case 'b': + prepend_before_command(); + break; default: + std::cout << "Not a recognized command " << input << ".\n"; break; } } @@ -188,3 +192,21 @@ int Editor::append_after_line(int line) { return edit_line(line + 1); } +int Editor::prepend_before_command() { + std::cout << "Prepend before which line? "; + int line; + std::cin >> line; + if (std::cin.fail() || line < 0 || line >= m_contents->size()) { + std::cout << "Not a valid line number!\n"; + std::cin.clear(); + std::cin.ignore(std::numeric_limits::max(),'\n'); + return 1; + } + + return prepend_before_line(line); +} + +int Editor::prepend_before_line(int line) { + m_contents->insert(m_contents->begin() + line, ""); + return edit_line(line); +} -- cgit v1.3