Move folder

This commit is contained in:
2026-04-13 10:32:46 +01:00
parent c683754d49
commit 037f884050
107 changed files with 292 additions and 155 deletions

8
src/editor/helpers.cc Normal file → Executable file
View File

@@ -312,14 +312,6 @@ void Editor::delete_next_word() {
this->edit_erase(this->cursor, next_col_cluster);
}
void Editor::clear_hooks_at_line(uint32_t line) {
for (uint8_t i = 0; i < 94; i++)
if (this->hooks[i] == line + 1) {
this->hooks[i] = 0;
break;
}
}
void Editor::cursor_prev_word() {
uint32_t prev_col;
word_boundaries(this->cursor, &prev_col, nullptr, nullptr, nullptr);