> @@ -2175,6 +2177,11 @@ static gboolean cb_func_editor_action(guint key_id) > case GEANY_KEYS_EDITOR_MOVELINEDOWN: > sci_move_selected_lines_down(doc->editor->sci); > break; > + > + case GEANY_KEYS_EDITOR_ADD_POSITION: > + if (doc->file_name) > + navqueue_add_position(doc->file_name, > sci_get_current_position(doc->editor->sci)); > + break;
and then this might need to be moved to fit the selected category --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/1114/files/bb6c323e81c3b0b936c32652551d8fd5775e361c#r69473061
