diff --git a/exec/fseditor.js b/exec/fseditor.js index 8d69a76918908be3d71075ad928959abb0069ba7..65594dff38d5daf3ca6732b4154d683a08defb56 100644 --- a/exec/fseditor.js +++ b/exec/fseditor.js @@ -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;