Skip to content
Snippets Groups Projects
Commit a2f04a05 authored by deuce's avatar deuce
Browse files

CTRL-B can't be block mode anymore.

Fix PgUp binding.
parent 98ddb540
No related branches found
No related tags found
No related merge requests found
......@@ -1209,9 +1209,8 @@ function quote_mode()
quote_line[quote_ypos].selected=!quote_line[quote_ypos].selected;
draw_quote_selection(quote_ypos);
break;
case 'B':
case 'B': /* B toggles "block" mode */
case 'b':
case '\x02': /* B or CTRL-B toggles "block" mode */
select_mode=!select_mode;
if(select_mode) {
select_start=quote_ypos;
......@@ -1243,15 +1242,6 @@ function quote_mode()
quote_topline=0;
draw_quote_window();
break;
case '\x19': /* CTRL-Y (Delete Line in SyncEdit) */
quote_ypos-=quote_height-1;
quote_topline-=quote_height-1;
if(quote_ypos<0)
quote_ypos=0;
if(quote_topline<0)
quote_topline=0;
draw_quote_window();
break;
case '\x1a': /* CTRL-Z (EOF) (PgUp in SyncEdit) */
quote_ypos-=quote_height-1;
quote_topline-=quote_height-1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment