Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When "go to line" is out of bounds, go to beginning or end of document #2973

Merged
merged 9 commits into from
Nov 9, 2021
2 changes: 1 addition & 1 deletion src/editor.h
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ void editor_set_indent(GeanyEditor *editor, GeanyIndentType type, gint width);

void editor_set_line_wrapping(GeanyEditor *editor, gboolean wrap);

gboolean editor_goto_line(GeanyEditor *editor, gint line_no, gint offset);
gboolean editor_goto_line(GeanyEditor *editor, gint line_no, gboolean offset);

void editor_set_indentation_guides(GeanyEditor *editor);

Expand Down