12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583 |
- /*
- * Copyright (c) 2020-2021, the SerenityOS developers.
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/Assertions.h>
- #include <AK/String.h>
- #include <LibGUI/Event.h>
- #include <LibGUI/TextEditor.h>
- #include <LibGUI/VimEditingEngine.h>
- #include <string.h>
- namespace GUI {
- void VimCursor::move()
- {
- if (m_forwards)
- move_forwards();
- else
- move_backwards();
- }
- void VimCursor::move_reverse()
- {
- if (m_forwards)
- move_backwards();
- else
- move_forwards();
- }
- u32 VimCursor::peek()
- {
- TextPosition saved_position = m_position;
- move();
- u32 peeked = current_char();
- m_position = saved_position;
- return peeked;
- }
- u32 VimCursor::peek_reverse()
- {
- TextPosition saved_position = m_position;
- move_reverse();
- u32 peeked = current_char();
- m_position = saved_position;
- return peeked;
- }
- TextDocumentLine& VimCursor::current_line()
- {
- return m_editor.line(m_position.line());
- }
- u32 VimCursor::current_char()
- {
- if (on_empty_line()) {
- // Fails all of isspace, ispunct, isalnum so should be good.
- return 0;
- } else {
- return current_line().view().code_points()[m_position.column()];
- }
- }
- bool VimCursor::on_empty_line()
- {
- return current_line().length() == 0;
- }
- bool VimCursor::will_cross_line_boundary()
- {
- if (on_empty_line())
- return true;
- else if (m_forwards && m_position.column() == current_line().length() - 1)
- return true;
- else if (!m_forwards && m_position.column() == 0)
- return true;
- else
- return false;
- }
- void VimCursor::move_forwards()
- {
- if (on_empty_line() || m_position.column() == current_line().length() - 1) {
- if (m_position.line() == m_editor.line_count() - 1) {
- // We have reached the end of the document, so any other
- // forward movements are no-ops.
- m_hit_edge = true;
- } else {
- m_position.set_column(0);
- m_position.set_line(m_position.line() + 1);
- m_crossed_line_boundary = true;
- }
- } else {
- m_position.set_column(m_position.column() + 1);
- m_crossed_line_boundary = false;
- }
- }
- void VimCursor::move_backwards()
- {
- if (m_position.column() == 0) {
- if (m_position.line() == 0) {
- // We have reached the start of the document, so any other
- // backward movements are no-ops.
- m_hit_edge = true;
- } else {
- m_position.set_line(m_position.line() - 1);
- if (!on_empty_line())
- m_position.set_column(current_line().length() - 1);
- else
- m_position.set_column(0);
- m_crossed_line_boundary = true;
- }
- } else {
- m_position.set_column(m_position.column() - 1);
- m_crossed_line_boundary = false;
- }
- }
- void VimMotion::add_key_code(KeyCode key, [[maybe_unused]] bool ctrl, bool shift, [[maybe_unused]] bool alt)
- {
- if (is_complete())
- return;
- if (m_find_mode != FindMode::None) {
- // We need to consume the next character because we are going to find
- // until that character.
- // HACK: there is no good way to obtain whether a character is alphanumeric
- // from the keycode itself.
- char const* keycode_str = key_code_to_string(key);
- if (strlen(keycode_str) == 1 && (isalpha(keycode_str[0]) || isspace(keycode_str[0]))) {
- m_next_character = tolower(keycode_str[0]);
- m_unit = Unit::Find;
- } else {
- m_unit = Unit::Unknown;
- }
- m_is_complete = true;
- m_should_consume_next_character = false;
- return;
- }
- bool should_use_guirky = m_guirky_mode;
- switch (key) {
- #define DIGIT(n) \
- case KeyCode::Key_##n: \
- m_amount = (m_amount * 10) + n; \
- break
- // Digits add digits to the amount.
- DIGIT(1);
- DIGIT(2);
- DIGIT(3);
- DIGIT(4);
- DIGIT(5);
- DIGIT(6);
- DIGIT(7);
- DIGIT(8);
- DIGIT(9);
- #undef DIGIT
- // Home means to the beginning of the line.
- case KeyCode::Key_Home:
- m_unit = Unit::Character;
- m_amount = START_OF_LINE;
- m_is_complete = true;
- break;
- // If 0 appears while amount is 0, then it means beginning of line.
- // Otherwise, it adds 0 to the amount.
- case KeyCode::Key_0:
- if (m_amount == 0) {
- m_unit = Unit::Character;
- m_amount = START_OF_LINE;
- m_is_complete = true;
- } else {
- m_amount = m_amount * 10;
- }
- break;
- // End or $ means end of line.
- // TODO: d2$ in vim deletes to the end of the line and then the next line.
- case KeyCode::Key_End:
- case KeyCode::Key_Dollar:
- m_unit = Unit::Character;
- m_amount = END_OF_LINE;
- m_is_complete = true;
- break;
- // ^ means the first non-whitespace character for this line.
- // It deletes backwards if you're in front of it, and forwards if you're behind.
- case KeyCode::Key_Circumflex:
- m_unit = Unit::Character;
- m_amount = START_OF_NON_WHITESPACE;
- m_is_complete = true;
- break;
- // j, down or + operates on this line and amount line(s) after.
- case KeyCode::Key_J:
- case KeyCode::Key_Down:
- case KeyCode::Key_Plus:
- m_unit = Unit::Line;
- if (m_amount == 0)
- m_amount = 1;
- m_is_complete = true;
- break;
- // k, up or - operates on this line and amount line(s) before.
- case KeyCode::Key_K:
- case KeyCode::Key_Up:
- case KeyCode::Key_Minus:
- m_unit = Unit::Line;
- if (m_amount == 0)
- m_amount = -1;
- else
- m_amount = -m_amount;
- m_is_complete = true;
- break;
- // BS, h or left operates on this character and amount character(s) before.
- case KeyCode::Key_Backspace:
- case KeyCode::Key_H:
- case KeyCode::Key_Left:
- m_unit = Unit::Character;
- if (m_amount == 0)
- m_amount = -1;
- else
- m_amount = -m_amount;
- m_is_complete = true;
- break;
- // l or right operates on this character and amount character(s) after.
- case KeyCode::Key_L:
- case KeyCode::Key_Right:
- m_unit = Unit::Character;
- if (m_amount > 0)
- m_amount--;
- m_is_complete = true;
- break;
- // w operates on amount word(s) after.
- // W operates on amount WORD(s) after.
- case KeyCode::Key_W:
- if (shift)
- m_unit = Unit::WORD;
- else
- m_unit = Unit::Word;
- if (m_amount == 0)
- m_amount = 1;
- m_is_complete = true;
- break;
- // b operates on amount word(s) before.
- // B operates on amount WORD(s) before.
- case KeyCode::Key_B:
- if (shift)
- m_unit = Unit::WORD;
- else
- m_unit = Unit::Word;
- if (m_amount == 0)
- m_amount = -1;
- else
- m_amount = -m_amount;
- m_is_complete = true;
- break;
- // e operates on amount of word(s) after, till the end of the last word.
- // E operates on amount of WORD(s) after, till the end of the last WORD.
- // ge operates on amount of word(s) before, till the end of the last word.
- // gE operates on amount of WORD(s) before, till the end of the last WORD.
- case KeyCode::Key_E:
- if (shift)
- m_unit = Unit::EndOfWORD;
- else
- m_unit = Unit::EndOfWord;
- if (m_guirky_mode) {
- if (m_amount == 0)
- m_amount = -1;
- else
- m_amount = -m_amount;
- m_guirky_mode = false;
- } else {
- if (m_amount == 0)
- m_amount = 1;
- }
- m_is_complete = true;
- break;
- // g enables guirky (g-prefix commands) mode.
- // gg operates from the start of the document to the cursor.
- // G operates from the cursor to the end of the document.
- case KeyCode::Key_G:
- if (m_guirky_mode) {
- if (shift) {
- // gG is not a valid command in vim.
- m_guirky_mode = false;
- m_unit = Unit::Unknown;
- m_is_complete = true;
- } else {
- m_guirky_mode = false;
- m_unit = Unit::Document;
- m_amount = -1;
- m_is_complete = true;
- }
- } else {
- if (shift) {
- m_unit = Unit::Document;
- m_amount = 1;
- m_is_complete = true;
- } else {
- m_guirky_mode = true;
- }
- }
- break;
- // t operates until the given character.
- case KeyCode::Key_T:
- m_find_mode = FindMode::To;
- m_should_consume_next_character = true;
- if (m_amount == 0)
- m_amount = 1;
- break;
- // f operates through the given character.
- case KeyCode::Key_F:
- m_find_mode = FindMode::Find;
- m_should_consume_next_character = true;
- if (m_amount == 0)
- m_amount = 1;
- break;
- default:
- m_unit = Unit::Unknown;
- m_is_complete = true;
- break;
- }
- if (should_use_guirky && m_guirky_mode) {
- // If we didn't use the g then we cancel the motion.
- m_guirky_mode = false;
- m_unit = Unit::Unknown;
- m_is_complete = true;
- }
- }
- Optional<TextRange> VimMotion::get_range(VimEditingEngine& engine, bool normalize_for_position)
- {
- if (!is_complete() || is_cancelled())
- return {};
- TextEditor& editor = engine.editor();
- auto position = editor.cursor();
- int amount = abs(m_amount);
- bool forwards = m_amount >= 0;
- VimCursor cursor { editor, position, forwards };
- m_start_line = m_end_line = position.line();
- m_start_column = m_end_column = position.column();
- switch (m_unit) {
- case Unit::Unknown:
- VERIFY_NOT_REACHED();
- case Unit::Document: {
- calculate_document_range(editor);
- break;
- }
- case Unit::Line: {
- calculate_line_range(editor, normalize_for_position);
- break;
- }
- case Unit::EndOfWord:
- case Unit::Word:
- case Unit::EndOfWORD:
- case Unit::WORD: {
- calculate_word_range(cursor, amount, normalize_for_position);
- break;
- }
- case Unit::Character: {
- calculate_character_range(cursor, amount, normalize_for_position);
- break;
- }
- case Unit::Find: {
- calculate_find_range(cursor, amount);
- break;
- }
- }
- return { TextRange { { m_start_line, m_start_column }, { m_end_line, m_end_column } } };
- }
- Optional<TextRange> VimMotion::get_repeat_range(VimEditingEngine& engine, VimMotion::Unit unit, bool normalize_for_position)
- {
- TextEditor& editor = engine.editor();
- if (m_amount > 0) {
- m_amount--;
- } else if (m_amount < 0) {
- m_amount++;
- }
- auto position = editor.cursor();
- int amount = abs(m_amount);
- bool forwards = m_amount >= 0;
- VimCursor cursor { editor, position, forwards };
- m_start_line = m_end_line = position.line();
- m_start_column = m_end_column = position.column();
- switch (unit) {
- case Unit::Line: {
- calculate_line_range(editor, normalize_for_position);
- break;
- }
- case Unit::Character: {
- calculate_character_range(cursor, amount, normalize_for_position);
- break;
- }
- default:
- return {};
- }
- return { TextRange { { m_start_line, m_start_column }, { m_end_line, m_end_column } } };
- }
- void VimMotion::calculate_document_range(TextEditor& editor)
- {
- if (m_amount >= 0) {
- m_end_line = editor.line_count() - 1;
- auto& last_line = editor.line(m_end_line);
- m_end_column = last_line.length();
- } else {
- m_start_line = 0;
- m_start_column = 0;
- }
- }
- void VimMotion::calculate_line_range(TextEditor& editor, bool normalize_for_position)
- {
- // Use this line +/- m_amount lines.
- m_start_column = 0;
- m_end_column = 0;
- if (m_amount >= 0) {
- m_end_line = min(m_end_line + !normalize_for_position + m_amount, editor.line_count());
- // We can't delete to "last line + 1", so if we're on the last line,
- // delete until the end.
- if (m_end_line == editor.line_count()) {
- m_end_line--;
- m_end_column = editor.line(m_end_line).length();
- }
- } else {
- // Can't write it as max(start_line + m_amount, 0) because of unsigned
- // shenanigans.
- if (m_start_line <= (unsigned)-m_amount)
- m_start_line = 0;
- else
- m_start_line += m_amount;
- if (m_end_line == editor.line_count() - 1)
- m_end_column = editor.line(m_end_line).length();
- else
- m_end_line++;
- }
- }
- void VimMotion::calculate_word_range(VimCursor& cursor, int amount, bool normalize_for_position)
- {
- enum {
- Whitespace,
- Word,
- Punctuation,
- Unknown
- };
- // Word is defined as a-zA-Z0-9_.
- auto part_of_word = [](u32 ch) { return ch == '_' || isalnum(ch); };
- auto part_of_punctuation = [](u32 ch) { return ch != '_' && ispunct(ch); };
- auto classify = [&](u32 ch) {
- if (isspace(ch))
- return Whitespace;
- else if (part_of_word(ch))
- return Word;
- else if (part_of_punctuation(ch))
- return Punctuation;
- else
- return Unknown;
- };
- // A small explanation for the code below: Because the direction of the
- // movement for this motion determines what the "start" and "end" of a word
- // is, the code below treats the motions like so:
- // - Start of word: w/W/ge/gE
- // - End of word: e/E/b/B
- while (amount > 0) {
- if (cursor.hit_edge())
- break;
- if ((!cursor.forwards() && (m_unit == Unit::Word || m_unit == Unit::WORD))
- || (cursor.forwards() && (m_unit == Unit::EndOfWord || m_unit == Unit::EndOfWORD))) {
- // End-of-word motions peek at the "next" character and if its class
- // is not the same as ours, they move over one character (to end up
- // at the new character class). This is required because we don't
- // want to exit the word with end-of-word motions.
- if (m_unit == Unit::Word || m_unit == Unit::EndOfWord) {
- // Word-style peeking
- int current_class = classify(cursor.current_char());
- int peeked_class = classify(cursor.peek());
- if (current_class != peeked_class) {
- cursor.move();
- }
- } else {
- // WORD-style peeking, much simpler
- if (isspace(cursor.peek())) {
- cursor.move();
- }
- }
- } else {
- // Start-of-word motions want to exit the word no matter which part
- // of it we're in.
- if (m_unit == Unit::Word || m_unit == Unit::EndOfWord) {
- // Word-style consumption
- if (part_of_word(cursor.current_char())) {
- do {
- cursor.move();
- if (cursor.hit_edge() || cursor.crossed_line_boundary())
- break;
- } while (part_of_word(cursor.current_char()));
- } else if (part_of_punctuation(cursor.current_char())) {
- do {
- cursor.move();
- if (cursor.hit_edge() || cursor.crossed_line_boundary())
- break;
- } while (part_of_punctuation(cursor.current_char()));
- } else if (cursor.on_empty_line()) {
- cursor.move();
- }
- } else {
- // WORD-style consumption
- if (!isspace(cursor.current_char())) {
- do {
- cursor.move();
- if (cursor.hit_edge() || cursor.crossed_line_boundary())
- break;
- } while (!isspace(cursor.current_char()));
- } else if (cursor.on_empty_line()) {
- cursor.move();
- }
- }
- }
- // Now consume any space if it exists.
- if (isspace(cursor.current_char())) {
- do {
- cursor.move();
- if (cursor.hit_edge())
- break;
- } while (isspace(cursor.current_char()));
- }
- if ((!cursor.forwards() && (m_unit == Unit::Word || m_unit == Unit::WORD))
- || (cursor.forwards() && (m_unit == Unit::EndOfWord || m_unit == Unit::EndOfWORD))) {
- // End-of-word motions consume until the class doesn't match.
- if (m_unit == Unit::Word || m_unit == Unit::EndOfWord) {
- // Word-style consumption
- int current_class = classify(cursor.current_char());
- while (classify(cursor.current_char()) == current_class) {
- cursor.move();
- if (cursor.hit_edge() || cursor.crossed_line_boundary())
- break;
- }
- } else {
- // WORD-style consumption
- while (!isspace(cursor.current_char())) {
- cursor.move();
- if (cursor.hit_edge() || cursor.crossed_line_boundary())
- break;
- }
- }
- }
- amount--;
- }
- // If we need to normalize for position then we do a move_reverse for
- // end-of-word motions, because vim acts on end-of-word ranges through the
- // character your cursor is placed on but acts on start-of-words *until* the
- // character your cursor is placed on.
- if (normalize_for_position) {
- if ((!cursor.forwards() && (m_unit == Unit::Word || m_unit == Unit::WORD))
- || (cursor.forwards() && (m_unit == Unit::EndOfWord || m_unit == Unit::EndOfWORD))) {
- if (!cursor.hit_edge())
- cursor.move_reverse();
- }
- }
- if (cursor.forwards()) {
- m_end_line = cursor.current_position().line();
- m_end_column = cursor.current_position().column() + normalize_for_position;
- } else {
- m_start_line = cursor.current_position().line();
- m_start_column = cursor.current_position().column();
- }
- }
- void VimMotion::calculate_character_range(VimCursor& cursor, int amount, bool normalize_for_position)
- {
- if (m_amount == START_OF_LINE) {
- m_start_column = 0;
- } else if (m_amount == END_OF_LINE) {
- m_end_column = cursor.current_line().length();
- } else if (m_amount == START_OF_NON_WHITESPACE) {
- // Find the first non-whitespace character and set the range from current
- // position to it.
- TextPosition cursor_copy = cursor.current_position();
- cursor.current_position().set_column(0);
- while (isspace(cursor.current_char())) {
- if (cursor.will_cross_line_boundary())
- break;
- cursor.move_forwards();
- }
- if (cursor_copy < cursor.current_position())
- m_end_column = cursor.current_position().column() + 1;
- else
- m_start_column = cursor.current_position().column();
- } else {
- while (amount > 0) {
- if (cursor.hit_edge() || cursor.will_cross_line_boundary())
- break;
- cursor.move();
- amount--;
- }
- if (cursor.forwards()) {
- m_end_column = cursor.current_position().column() + 1 + normalize_for_position;
- } else {
- m_start_column = cursor.current_position().column();
- }
- }
- }
- void VimMotion::calculate_find_range(VimCursor& cursor, int amount)
- {
- // Find the searched character (case-insensitive).
- while (amount > 0) {
- cursor.move_forwards();
- while ((unsigned)tolower(cursor.current_char()) != m_next_character) {
- if (cursor.will_cross_line_boundary())
- break;
- cursor.move_forwards();
- }
- amount--;
- }
- // If we didn't find our character before reaching the end of the line, then
- // we want the range to be invalid so no operation is performed.
- if ((unsigned)tolower(cursor.current_char()) == m_next_character) {
- // We found our character.
- bool in_find_mode = m_find_mode == FindMode::Find;
- m_end_column = cursor.current_position().column() + in_find_mode;
- }
- m_find_mode = FindMode::None;
- }
- Optional<TextPosition> VimMotion::get_position(VimEditingEngine& engine, bool in_visual_mode)
- {
- auto range_optional = get_range(engine, true);
- if (!range_optional.has_value())
- return {};
- auto range = range_optional.value();
- if (!range.is_valid())
- return {};
- TextEditor& editor = engine.editor();
- auto cursor_position = editor.cursor();
- switch (m_unit) {
- case Unit::Document: {
- if (range.start().line() < cursor_position.line()) {
- cursor_position.set_line(range.start().line());
- } else {
- cursor_position.set_line(range.end().line());
- }
- cursor_position.set_column(0);
- return { cursor_position };
- }
- case Unit::Line: {
- size_t line_number;
- // Because we select lines from start to end, we can't use that
- // to get the new position, so we do some correction here.
- if (range.start().line() < cursor_position.line() || m_amount < 0) {
- line_number = range.start().line();
- } else {
- line_number = range.end().line();
- }
- auto& line = editor.line(line_number);
- cursor_position.set_line(line_number);
- if (line.length() <= cursor_position.column()) {
- cursor_position.set_column(line.length() - 1);
- }
- return { cursor_position };
- }
- default: {
- if (range.start() < cursor_position) {
- return { range.start() };
- } else {
- // Ranges are end-exclusive. The normalize_for_position argument we pass
- // above in get_range normalizes some values which shouldn't be
- // end-exclusive during normal operations.
- bool is_at_start = range.end().column() == 0;
- auto& line = editor.line(range.end().line());
- size_t column = is_at_start ? 0 : range.end().column() - 1;
- column = min(column, line.length() - (in_visual_mode ? 0 : 1));
- // Need to not go beyond the last character, as standard in vim.
- return { TextPosition { range.end().line(), column } };
- }
- }
- }
- }
- void VimMotion::reset()
- {
- m_unit = Unit::Unknown;
- m_amount = 0;
- m_is_complete = false;
- }
- CursorWidth VimEditingEngine::cursor_width() const
- {
- return m_vim_mode == VimMode::Insert ? CursorWidth::NARROW : CursorWidth::WIDE;
- }
- bool VimEditingEngine::on_key(KeyEvent const& event)
- {
- switch (m_vim_mode) {
- case (VimMode::Insert):
- return on_key_in_insert_mode(event);
- case (VimMode::Visual):
- return on_key_in_visual_mode(event);
- case (VimMode::VisualLine):
- return on_key_in_visual_line_mode(event);
- case (VimMode::Normal):
- return on_key_in_normal_mode(event);
- default:
- VERIFY_NOT_REACHED();
- }
- return false;
- }
- bool VimEditingEngine::on_key_in_insert_mode(KeyEvent const& event)
- {
- if (EditingEngine::on_key(event))
- return true;
- if (event.ctrl()) {
- switch (event.key()) {
- case KeyCode::Key_W:
- m_editor->delete_previous_word();
- return true;
- case KeyCode::Key_H:
- m_editor->delete_previous_char();
- return true;
- case KeyCode::Key_U:
- m_editor->delete_from_line_start_to_cursor();
- return true;
- default:
- break;
- }
- }
- if (event.key() == KeyCode::Key_Escape || (event.ctrl() && event.key() == KeyCode::Key_LeftBracket) || (event.ctrl() && event.key() == KeyCode::Key_C)) {
- if (m_editor->cursor().column() > 0)
- move_one_left();
- switch_to_normal_mode();
- return true;
- }
- return false;
- }
- bool VimEditingEngine::on_key_in_normal_mode(KeyEvent const& event)
- {
- // Ignore auxiliary keypress events.
- if (event.key() == KeyCode::Key_LeftShift
- || event.key() == KeyCode::Key_RightShift
- || event.key() == KeyCode::Key_Control
- || event.key() == KeyCode::Key_Alt) {
- return false;
- }
- if (m_previous_key == KeyCode::Key_D) {
- if (event.key() == KeyCode::Key_D && !m_motion.should_consume_next_character()) {
- if (m_motion.amount()) {
- auto range = m_motion.get_repeat_range(*this, VimMotion::Unit::Line);
- VERIFY(range.has_value());
- yank(*range, Line);
- m_editor->delete_text_range(*range);
- } else {
- yank(Line);
- delete_line();
- }
- m_motion.reset();
- m_previous_key = {};
- } else {
- m_motion.add_key_code(event.key(), event.ctrl(), event.shift(), event.alt());
- if (m_motion.is_complete()) {
- if (!m_motion.is_cancelled()) {
- auto range = m_motion.get_range(*this);
- VERIFY(range.has_value());
- if (range->is_valid()) {
- m_editor->delete_text_range(*range);
- }
- }
- m_motion.reset();
- m_previous_key = {};
- }
- }
- } else if (m_previous_key == KeyCode::Key_Y) {
- if (event.key() == KeyCode::Key_Y && !m_motion.should_consume_next_character()) {
- if (m_motion.amount()) {
- auto range = m_motion.get_repeat_range(*this, VimMotion::Unit::Line);
- VERIFY(range.has_value());
- yank(*range, Line);
- } else {
- yank(Line);
- }
- m_motion.reset();
- m_previous_key = {};
- } else {
- m_motion.add_key_code(event.key(), event.ctrl(), event.shift(), event.alt());
- if (m_motion.is_complete()) {
- if (!m_motion.is_cancelled()) {
- auto range = m_motion.get_range(*this);
- VERIFY(range.has_value());
- if (range->is_valid()) {
- m_editor->set_selection(*range);
- yank(Selection);
- m_editor->clear_selection();
- }
- }
- m_motion.reset();
- m_previous_key = {};
- }
- }
- } else if (m_previous_key == KeyCode::Key_C) {
- if (event.key() == KeyCode::Key_C && !m_motion.should_consume_next_character()) {
- // Needed because the code to replace the deleted line is called after delete_line() so
- // what was the second last line before the delete, is now the last line.
- bool was_second_last_line = m_editor->cursor().line() == m_editor->line_count() - 2;
- yank(Line);
- delete_line();
- if (was_second_last_line || (m_editor->cursor().line() != 0 && m_editor->cursor().line() != m_editor->line_count() - 1)) {
- move_one_up(event);
- move_to_logical_line_end();
- m_editor->add_code_point(0x0A);
- } else if (m_editor->cursor().line() == 0) {
- move_to_logical_line_beginning();
- m_editor->add_code_point(0x0A);
- move_one_up(event);
- } else if (m_editor->cursor().line() == m_editor->line_count() - 1) {
- m_editor->add_code_point(0x0A);
- }
- switch_to_insert_mode();
- } else {
- m_motion.add_key_code(event.key(), event.ctrl(), event.shift(), event.alt());
- if (m_motion.is_complete()) {
- if (!m_motion.is_cancelled()) {
- auto range = m_motion.get_range(*this);
- VERIFY(range.has_value());
- if (range->is_valid()) {
- m_editor->set_selection(*range);
- yank(Selection);
- m_editor->delete_text_range(*range);
- switch_to_insert_mode();
- }
- }
- m_motion.reset();
- m_previous_key = {};
- }
- }
- } else {
- if (m_motion.should_consume_next_character()) {
- // We must consume the next character.
- // FIXME: deduplicate with code below.
- m_motion.add_key_code(event.key(), event.ctrl(), event.shift(), event.alt());
- if (m_motion.is_complete()) {
- if (!m_motion.is_cancelled()) {
- auto maybe_new_position = m_motion.get_position(*this);
- if (maybe_new_position.has_value()) {
- auto new_position = maybe_new_position.value();
- m_editor->set_cursor(new_position);
- }
- }
- m_motion.reset();
- }
- return true;
- }
- // Handle first any key codes that are to be applied regardless of modifiers.
- switch (event.key()) {
- case (KeyCode::Key_Escape):
- if (m_editor->on_escape_pressed)
- m_editor->on_escape_pressed();
- return true;
- default:
- break;
- }
- // SHIFT is pressed.
- if (event.shift() && !event.ctrl() && !event.alt()) {
- switch (event.key()) {
- case (KeyCode::Key_A):
- move_to_logical_line_end();
- switch_to_insert_mode();
- return true;
- case (KeyCode::Key_I):
- move_to_logical_line_beginning();
- switch_to_insert_mode();
- return true;
- case (KeyCode::Key_O):
- move_to_logical_line_beginning();
- m_editor->add_code_point(0x0A);
- move_one_up(event);
- switch_to_insert_mode();
- return true;
- case (KeyCode::Key_LeftBrace): {
- auto amount = m_motion.amount() > 0 ? m_motion.amount() : 1;
- m_motion.reset();
- for (int i = 0; i < amount; i++)
- move_to_previous_empty_lines_block();
- return true;
- }
- case (KeyCode::Key_RightBrace): {
- auto amount = m_motion.amount() > 0 ? m_motion.amount() : 1;
- m_motion.reset();
- for (int i = 0; i < amount; i++)
- move_to_next_empty_lines_block();
- return true;
- }
- case (KeyCode::Key_J): {
- // Looks a bit strange, but join without a repeat, with 1 as the repeat or 2 as the repeat all join the current and next lines
- auto amount = (m_motion.amount() > 2) ? (m_motion.amount() - 1) : 1;
- m_motion.reset();
- for (int i = 0; i < amount; i++) {
- if (m_editor->cursor().line() + 1 >= m_editor->line_count())
- return true;
- move_to_logical_line_end();
- m_editor->add_code_point(' ');
- TextPosition next_line = { m_editor->cursor().line() + 1, 0 };
- m_editor->delete_text_range({ m_editor->cursor(), next_line });
- move_one_left();
- }
- return true;
- }
- case (KeyCode::Key_P):
- put_before();
- break;
- case (KeyCode::Key_V):
- switch_to_visual_line_mode();
- return true;
- default:
- break;
- }
- }
- // CTRL is pressed.
- if (event.ctrl() && !event.shift() && !event.alt()) {
- switch (event.key()) {
- case (KeyCode::Key_D):
- move_half_page_down();
- return true;
- case (KeyCode::Key_R):
- m_editor->redo();
- return true;
- case (KeyCode::Key_U):
- move_half_page_up();
- return true;
- default:
- break;
- }
- }
- // FIXME: H and L movement keys will move to the previous or next line when reaching the beginning or end
- // of the line and pressed again.
- // No modifier is pressed.
- if (!event.ctrl() && !event.shift() && !event.alt()) {
- switch (event.key()) {
- case (KeyCode::Key_A):
- move_one_right();
- switch_to_insert_mode();
- return true;
- case (KeyCode::Key_C):
- m_previous_key = event.key();
- return true;
- case (KeyCode::Key_D):
- m_previous_key = event.key();
- return true;
- case (KeyCode::Key_I):
- switch_to_insert_mode();
- return true;
- case (KeyCode::Key_O):
- move_to_logical_line_end();
- m_editor->add_code_point(0x0A);
- switch_to_insert_mode();
- return true;
- case (KeyCode::Key_U):
- m_editor->undo();
- return true;
- case (KeyCode::Key_X): {
- TextRange range = { m_editor->cursor(), { m_editor->cursor().line(), m_editor->cursor().column() + 1 } };
- if (m_motion.amount()) {
- auto opt = m_motion.get_repeat_range(*this, VimMotion::Unit::Character);
- VERIFY(opt.has_value());
- range = *opt;
- m_motion.reset();
- }
- yank(range, Selection);
- m_editor->delete_text_range(range);
- return true;
- }
- case (KeyCode::Key_V):
- switch_to_visual_mode();
- return true;
- case (KeyCode::Key_Y):
- m_previous_key = event.key();
- return true;
- case (KeyCode::Key_P):
- put_after();
- return true;
- case (KeyCode::Key_PageUp):
- move_page_up();
- return true;
- case (KeyCode::Key_PageDown):
- move_page_down();
- return true;
- default:
- break;
- }
- }
- // If nothing else handled the key, we'll be feeding the motion state
- // machine instead.
- m_motion.add_key_code(event.key(), event.ctrl(), event.shift(), event.alt());
- if (m_motion.is_complete()) {
- if (!m_motion.is_cancelled()) {
- auto maybe_new_position = m_motion.get_position(*this);
- if (maybe_new_position.has_value()) {
- auto new_position = maybe_new_position.value();
- m_editor->set_cursor(new_position);
- }
- }
- m_motion.reset();
- }
- }
- return true;
- }
- bool VimEditingEngine::on_key_in_visual_mode(KeyEvent const& event)
- {
- // If the motion state machine requires the next character, feed it.
- if (m_motion.should_consume_next_character()) {
- m_motion.add_key_code(event.key(), event.ctrl(), event.shift(), event.alt());
- if (m_motion.is_complete()) {
- if (!m_motion.is_cancelled()) {
- auto maybe_new_position = m_motion.get_position(*this, true);
- if (maybe_new_position.has_value()) {
- auto new_position = maybe_new_position.value();
- m_editor->set_cursor(new_position);
- update_selection_on_cursor_move();
- }
- }
- m_motion.reset();
- }
- return true;
- }
- // Handle first any key codes that are to be applied regardless of modifiers.
- switch (event.key()) {
- case (KeyCode::Key_Escape):
- switch_to_normal_mode();
- if (m_editor->on_escape_pressed)
- m_editor->on_escape_pressed();
- return true;
- default:
- break;
- }
- // SHIFT is pressed.
- if (event.shift() && !event.ctrl() && !event.alt()) {
- switch (event.key()) {
- case (KeyCode::Key_A):
- move_to_logical_line_end();
- switch_to_insert_mode();
- return true;
- case (KeyCode::Key_I):
- move_to_logical_line_beginning();
- switch_to_insert_mode();
- return true;
- case (KeyCode::Key_U):
- casefold_selection(Casing::Uppercase);
- switch_to_normal_mode();
- return true;
- case (KeyCode::Key_Tilde):
- casefold_selection(Casing::Invertcase);
- switch_to_normal_mode();
- return true;
- default:
- break;
- }
- }
- // CTRL is pressed.
- if (event.ctrl() && !event.shift() && !event.alt()) {
- switch (event.key()) {
- case (KeyCode::Key_D):
- move_half_page_down();
- update_selection_on_cursor_move();
- return true;
- case (KeyCode::Key_U):
- move_half_page_up();
- update_selection_on_cursor_move();
- return true;
- default:
- break;
- }
- }
- // No modifier is pressed.
- if (!event.ctrl() && !event.shift() && !event.alt()) {
- switch (event.key()) {
- case (KeyCode::Key_D):
- yank(Selection);
- m_editor->do_delete();
- switch_to_normal_mode();
- return true;
- case (KeyCode::Key_X):
- yank(Selection);
- m_editor->do_delete();
- switch_to_normal_mode();
- return true;
- case (KeyCode::Key_V):
- switch_to_normal_mode();
- return true;
- case (KeyCode::Key_C):
- yank(Selection);
- m_editor->do_delete();
- switch_to_insert_mode();
- return true;
- case (KeyCode::Key_Y):
- yank(Selection);
- switch_to_normal_mode();
- return true;
- case (KeyCode::Key_U):
- casefold_selection(Casing::Lowercase);
- switch_to_normal_mode();
- return true;
- case (KeyCode::Key_PageUp):
- move_page_up();
- update_selection_on_cursor_move();
- return true;
- case (KeyCode::Key_PageDown):
- move_page_down();
- update_selection_on_cursor_move();
- return true;
- default:
- break;
- }
- }
- // By default, we feed the motion state machine.
- m_motion.add_key_code(event.key(), event.ctrl(), event.shift(), event.alt());
- if (m_motion.is_complete()) {
- if (!m_motion.is_cancelled()) {
- auto maybe_new_position = m_motion.get_position(*this, true);
- if (maybe_new_position.has_value()) {
- auto new_position = maybe_new_position.value();
- m_editor->set_cursor(new_position);
- update_selection_on_cursor_move();
- }
- }
- m_motion.reset();
- }
- return true;
- }
- bool VimEditingEngine::on_key_in_visual_line_mode(KeyEvent const& event)
- {
- // If the motion state machine requires the next character, feed it.
- if (m_motion.should_consume_next_character()) {
- m_motion.add_key_code(event.key(), event.ctrl(), event.shift(), event.alt());
- if (m_motion.is_complete()) {
- if (!m_motion.is_cancelled()) {
- auto maybe_new_position = m_motion.get_position(*this, true);
- if (maybe_new_position.has_value()) {
- auto new_position = maybe_new_position.value();
- m_editor->set_cursor(new_position);
- update_selection_on_cursor_move();
- }
- }
- m_motion.reset();
- }
- return true;
- }
- // Handle first any key codes that are to be applied regardless of modifiers.
- switch (event.key()) {
- case (KeyCode::Key_Escape):
- switch_to_normal_mode();
- if (m_editor->on_escape_pressed)
- m_editor->on_escape_pressed();
- return true;
- default:
- break;
- }
- // SHIFT is pressed.
- if (event.shift() && !event.ctrl() && !event.alt()) {
- switch (event.key()) {
- case (KeyCode::Key_U):
- casefold_selection(Casing::Uppercase);
- switch_to_normal_mode();
- return true;
- case (KeyCode::Key_Tilde):
- casefold_selection(Casing::Invertcase);
- switch_to_normal_mode();
- return true;
- default:
- break;
- }
- }
- // CTRL is pressed.
- if (event.ctrl() && !event.shift() && !event.alt()) {
- switch (event.key()) {
- case (KeyCode::Key_D):
- move_half_page_down();
- update_selection_on_cursor_move();
- return true;
- case (KeyCode::Key_U):
- move_half_page_up();
- update_selection_on_cursor_move();
- return true;
- default:
- break;
- }
- }
- // No modifier is pressed.
- if (!event.ctrl() && !event.shift() && !event.alt()) {
- switch (event.key()) {
- case (KeyCode::Key_D):
- yank(m_editor->selection(), Line);
- m_editor->do_delete();
- switch_to_normal_mode();
- return true;
- case (KeyCode::Key_X):
- yank(m_editor->selection(), Line);
- m_editor->do_delete();
- switch_to_normal_mode();
- return true;
- case (KeyCode::Key_C):
- yank(m_editor->selection(), Line);
- m_editor->do_delete();
- switch_to_insert_mode();
- return true;
- case (KeyCode::Key_Y):
- yank(m_editor->selection(), Line);
- switch_to_normal_mode();
- return true;
- case (KeyCode::Key_U):
- casefold_selection(Casing::Lowercase);
- switch_to_normal_mode();
- return true;
- case (KeyCode::Key_PageUp):
- move_page_up();
- update_selection_on_cursor_move();
- return true;
- case (KeyCode::Key_PageDown):
- move_page_down();
- update_selection_on_cursor_move();
- return true;
- default:
- break;
- }
- }
- // By default, we feed the motion state machine.
- m_motion.add_key_code(event.key(), event.ctrl(), event.shift(), event.alt());
- if (m_motion.is_complete()) {
- if (!m_motion.is_cancelled()) {
- auto maybe_new_position = m_motion.get_position(*this, true);
- if (maybe_new_position.has_value()) {
- auto new_position = maybe_new_position.value();
- m_editor->set_cursor(new_position);
- update_selection_on_cursor_move();
- }
- }
- m_motion.reset();
- }
- return true;
- }
- void VimEditingEngine::switch_to_normal_mode()
- {
- m_vim_mode = VimMode::Normal;
- m_editor->reset_cursor_blink();
- m_previous_key = {};
- clear_visual_mode_data();
- m_motion.reset();
- };
- void VimEditingEngine::switch_to_insert_mode()
- {
- m_vim_mode = VimMode::Insert;
- m_editor->reset_cursor_blink();
- m_previous_key = {};
- clear_visual_mode_data();
- m_motion.reset();
- };
- void VimEditingEngine::switch_to_visual_mode()
- {
- m_vim_mode = VimMode::Visual;
- m_editor->reset_cursor_blink();
- m_previous_key = {};
- m_selection_start_position = m_editor->cursor();
- m_editor->selection().set(m_editor->cursor(), { m_editor->cursor().line(), m_editor->cursor().column() + 1 });
- m_editor->did_update_selection();
- m_motion.reset();
- }
- void VimEditingEngine::switch_to_visual_line_mode()
- {
- m_vim_mode = VimMode::VisualLine;
- m_editor->reset_cursor_blink();
- m_previous_key = {};
- m_selection_start_position = TextPosition { m_editor->cursor().line(), 0 };
- m_editor->selection().set(m_selection_start_position, { m_editor->cursor().line(), m_editor->current_line().length() });
- m_editor->did_update_selection();
- m_motion.reset();
- }
- void VimEditingEngine::update_selection_on_cursor_move()
- {
- auto cursor = m_editor->cursor();
- auto start = m_selection_start_position < cursor ? m_selection_start_position : cursor;
- auto end = m_selection_start_position < cursor ? cursor : m_selection_start_position;
- if (end.column() >= m_editor->current_line().length()) {
- if (end.line() != m_editor->line_count() - 1)
- end = { end.line() + 1, 0 };
- } else {
- end.set_column(end.column() + 1);
- }
- if (m_vim_mode == VimMode::VisualLine) {
- start = TextPosition { start.line(), 0 };
- end = TextPosition { end.line(), m_editor->line(end.line()).length() };
- }
- m_editor->selection().set(start, end);
- m_editor->did_update_selection();
- }
- void VimEditingEngine::clamp_cursor_position()
- {
- auto cursor = m_editor->cursor();
- if (cursor.column() >= m_editor->current_line().length()) {
- cursor.set_column(m_editor->current_line().length() - 1);
- m_editor->set_cursor(cursor);
- }
- }
- void VimEditingEngine::clear_visual_mode_data()
- {
- if (m_editor->has_selection()) {
- m_editor->selection().clear();
- m_editor->did_update_selection();
- clamp_cursor_position();
- }
- m_selection_start_position = {};
- }
- void VimEditingEngine::move_half_page_up()
- {
- move_up(0.5);
- };
- void VimEditingEngine::move_half_page_down()
- {
- move_down(0.5);
- };
- void VimEditingEngine::yank(YankType type)
- {
- m_yank_type = type;
- if (type == YankType::Line) {
- m_yank_buffer = m_editor->current_line().to_utf8();
- } else {
- m_yank_buffer = m_editor->selected_text();
- }
- // When putting this, auto indentation (if enabled) will indent as far as
- // is necessary, then any whitespace captured before the yanked text will be placed
- // after the indentation, doubling the indentation.
- if (m_editor->is_automatic_indentation_enabled())
- m_yank_buffer = m_yank_buffer.trim_whitespace(TrimMode::Left);
- }
- void VimEditingEngine::yank(TextRange range, YankType yank_type)
- {
- m_yank_type = yank_type;
- m_yank_buffer = m_editor->document().text_in_range(range).trim_whitespace(AK::TrimMode::Right);
- }
- void VimEditingEngine::put_before()
- {
- auto amount = m_motion.amount() ? m_motion.amount() : 1;
- m_motion.reset();
- if (m_yank_type == YankType::Line) {
- move_to_logical_line_beginning();
- StringBuilder sb = StringBuilder(amount * (m_yank_buffer.length() + 1));
- for (auto i = 0; i < amount; i++) {
- sb.append(m_yank_buffer);
- sb.append_code_point(0x0A);
- }
- m_editor->insert_at_cursor_or_replace_selection(sb.to_string());
- m_editor->set_cursor({ m_editor->cursor().line(), m_editor->current_line().first_non_whitespace_column() });
- } else {
- StringBuilder sb = StringBuilder(m_yank_buffer.length() * amount);
- for (auto i = 0; i < amount; i++) {
- sb.append(m_yank_buffer);
- }
- m_editor->insert_at_cursor_or_replace_selection(sb.to_string());
- move_one_left();
- }
- }
- void VimEditingEngine::put_after()
- {
- auto amount = m_motion.amount() ? m_motion.amount() : 1;
- m_motion.reset();
- if (m_yank_type == YankType::Line) {
- move_to_logical_line_end();
- StringBuilder sb = StringBuilder(m_yank_buffer.length() + 1);
- for (auto i = 0; i < amount; i++) {
- sb.append_code_point(0x0A);
- sb.append(m_yank_buffer);
- }
- m_editor->insert_at_cursor_or_replace_selection(sb.to_string());
- m_editor->set_cursor({ m_editor->cursor().line(), m_editor->current_line().first_non_whitespace_column() });
- } else {
- // FIXME: If attempting to put on the last column a line,
- // the buffer will bne placed on the next line due to the move_one_left/right behavior.
- move_one_right();
- StringBuilder sb = StringBuilder(m_yank_buffer.length() * amount);
- for (auto i = 0; i < amount; i++) {
- sb.append(m_yank_buffer);
- }
- m_editor->insert_at_cursor_or_replace_selection(sb.to_string());
- move_one_left();
- }
- }
- void VimEditingEngine::move_to_previous_empty_lines_block()
- {
- VERIFY(!m_editor.is_null());
- size_t line_idx = m_editor->cursor().line();
- bool skipping_initial_empty_lines = true;
- while (line_idx > 0) {
- if (m_editor->document().line(line_idx).is_empty()) {
- if (!skipping_initial_empty_lines)
- break;
- } else {
- skipping_initial_empty_lines = false;
- }
- line_idx--;
- }
- TextPosition new_cursor = { line_idx, 0 };
- m_editor->set_cursor(new_cursor);
- };
- void VimEditingEngine::move_to_next_empty_lines_block()
- {
- VERIFY(!m_editor.is_null());
- size_t line_idx = m_editor->cursor().line();
- bool skipping_initial_empty_lines = true;
- while (line_idx < m_editor->line_count() - 1) {
- if (m_editor->document().line(line_idx).is_empty()) {
- if (!skipping_initial_empty_lines)
- break;
- } else {
- skipping_initial_empty_lines = false;
- }
- line_idx++;
- }
- TextPosition new_cursor = { line_idx, 0 };
- m_editor->set_cursor(new_cursor);
- };
- void VimEditingEngine::casefold_selection(Casing casing)
- {
- VERIFY(!m_editor.is_null());
- VERIFY(m_editor->has_selection());
- switch (casing) {
- case Casing::Uppercase:
- m_editor->insert_at_cursor_or_replace_selection(m_editor->selected_text().to_uppercase());
- return;
- case Casing::Lowercase:
- m_editor->insert_at_cursor_or_replace_selection(m_editor->selected_text().to_lowercase());
- return;
- case Casing::Invertcase:
- m_editor->insert_at_cursor_or_replace_selection(m_editor->selected_text().invert_case());
- return;
- }
- }
- }
|