Skip to content

Fixed replacement insert indentation #12

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions src/zen-editor.c
Original file line number Diff line number Diff line change
Expand Up @@ -341,18 +341,24 @@ ZenEditor_replace_content(ZenEditor *self, PyObject *args)
{
/* replace whole editor content */
sci_set_text(sci, tmp2);

/* Move cursor to first placeholder position, if found */
if (ph_pos > -1)
sci_set_current_position(sci, sel_start + ph_pos, TRUE);
}
else if (sel_start != -1 && sel_end == -1)
{
/* insert text at sel_start */
sci_insert_text(sci, sel_start, tmp2);
}
else if (sel_start != -1 && sel_end != -1)
else if (sel_start != -1)
{
/* replace from sel_start to sel_end */
if (sel_end == -1)
{
/* insert text at sel_start */
sel_end = sel_start;
}

sci_set_selection_start(sci, sel_start);
sci_set_selection_end(sci, sel_end);
sci_replace_sel(sci, tmp2);
sci_replace_sel(sci, "");
editor_insert_text_block(ZenEditor_get_context(self)->editor, tmp2, sel_start, ph_pos, -1, FALSE);
}
else
{
Expand All @@ -362,11 +368,6 @@ ZenEditor_replace_content(ZenEditor *self, PyObject *args)
}

g_free(tmp2);

/* Move cursor to first placeholder position, if found */
if (ph_pos > -1)
sci_set_current_position(sci, sel_start + ph_pos, TRUE);

}
else
{
Expand Down