mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
Everywhere: Remove needless trailing semi-colons after functions
This is a new option in clang-format-16.
This commit is contained in:
committed by
Linus Groh
parent
aff81d318b
commit
c911781c21
@@ -1371,7 +1371,7 @@ void VimEditingEngine::switch_to_normal_mode()
|
||||
m_previous_key = {};
|
||||
clear_visual_mode_data();
|
||||
m_motion.reset();
|
||||
};
|
||||
}
|
||||
|
||||
void VimEditingEngine::switch_to_insert_mode()
|
||||
{
|
||||
@@ -1380,7 +1380,7 @@ void VimEditingEngine::switch_to_insert_mode()
|
||||
m_previous_key = {};
|
||||
clear_visual_mode_data();
|
||||
m_motion.reset();
|
||||
};
|
||||
}
|
||||
|
||||
void VimEditingEngine::switch_to_visual_mode()
|
||||
{
|
||||
@@ -1448,12 +1448,12 @@ void VimEditingEngine::clear_visual_mode_data()
|
||||
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)
|
||||
{
|
||||
@@ -1544,7 +1544,7 @@ void VimEditingEngine::move_to_previous_empty_lines_block()
|
||||
TextPosition new_cursor = { line_idx, 0 };
|
||||
|
||||
m_editor->set_cursor(new_cursor);
|
||||
};
|
||||
}
|
||||
|
||||
void VimEditingEngine::move_to_next_empty_lines_block()
|
||||
{
|
||||
@@ -1564,7 +1564,7 @@ void VimEditingEngine::move_to_next_empty_lines_block()
|
||||
TextPosition new_cursor = { line_idx, 0 };
|
||||
|
||||
m_editor->set_cursor(new_cursor);
|
||||
};
|
||||
}
|
||||
|
||||
void VimEditingEngine::casefold_selection(Casing casing)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user