Move folder
This commit is contained in:
8
src/editor/helpers.cc
Normal file → Executable file
8
src/editor/helpers.cc
Normal file → Executable 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);
|
||||
|
||||
Reference in New Issue
Block a user