Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sun, 23 Mar 2025 21:44:13 UTC Commit: 6a266bff0f70199a727aaabea0cf0b6e94c68ae3 https://github.com/geany/geany/commit/6a266bff0f70199a727aaabea0cf0b6e94c68a...
Log Message: ----------- Merge pull request #4278 from techee/multipaste
Allow pasting and autocompletion for multiple cursors
Modified Paths: -------------- src/editor.c
Modified: src/editor.c 6 lines changed, 6 insertions(+), 0 deletions(-) =================================================================== @@ -4965,6 +4965,12 @@ static ScintillaObject *create_new_sci(GeanyEditor *editor) /* input method editor's candidate window behaviour */ SSM(sci, SCI_SETIMEINTERACTION, editor_prefs.ime_interaction, 0);
+ /* paste to all cursor positions, not just the primary one */ + SSM(sci, SCI_SETMULTIPASTE, SC_MULTIPASTE_EACH, 0); + + /* perform autocomplete for all cursor positions, not just the primary one */ + SSM(sci, SCI_AUTOCSETMULTI, SC_MULTIAUTOC_EACH , 0); + /* only connect signals if this is for the document notebook, not split window */ if (editor->sci == NULL) {
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).