mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
Merge branch '2660_mcedit_reset_selection'
* 2660_mcedit_reset_selection: Ticket #2660 (mcedit: reset selection after paste)
This commit is contained in:
commit
3190504ed6
@ -4069,6 +4069,13 @@ edit_execute_cmd (WEdit * edit, unsigned long command, int char_for_insertion)
|
||||
if (option_cursor_beyond_eol && edit->over_col > 0)
|
||||
edit_insert_over (edit);
|
||||
edit_paste_from_X_buf_cmd (edit);
|
||||
if (!option_persistent_selections && edit->mark2 >= 0)
|
||||
{
|
||||
if (edit->column_highlight)
|
||||
edit_push_undo_action (edit, COLUMN_ON);
|
||||
edit->column_highlight = 0;
|
||||
edit_mark_cmd (edit, TRUE);
|
||||
}
|
||||
break;
|
||||
case CK_History:
|
||||
edit_paste_from_history (edit);
|
||||
|
Loading…
Reference in New Issue
Block a user