90 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # This file contains terminal escape sequences as shortcut
 | |
| # It is used for PTY screen / Input driver (Terminal emulation)
 | |
| # ^[ is used as escape
 | |
| 
 | |
| # f1 - fenrir help
 | |
| ^[OP=toggle_tutorial_mode
 | |
| # double tap control+end read attributes
 | |
| 2,^[[1;5F=attribute_cursor
 | |
| #=toggle_has_attribute
 | |
| # escape - stop speech
 | |
| ^[=shut_up
 | |
| # context menu key - stop speech
 | |
| ^[[29~=shut_up
 | |
| # alt+shift+down - review to bottom
 | |
| ^[[1;4B=review_bottom
 | |
| # alt+shift_up - review to top
 | |
| ^[[1;4A=review_top
 | |
| # alt+down - review current line
 | |
| ^[[1;3B=review_curr_line
 | |
| # alt+left - review previous line
 | |
| ^[[1;3D=review_prev_line
 | |
| # alt+right - review next line
 | |
| ^[[1;3C=review_next_line
 | |
| # alt+shift+left - beginning of line
 | |
| ^[[1;4D=review_line_begin
 | |
| # alt+shift+right - end of line
 | |
| ^[[1;4C=review_line_end
 | |
| # control+down - review current word
 | |
| ^[[1;5B=review_curr_word
 | |
| # control+left - review previous word
 | |
| ^[[1;5D=review_prev_word
 | |
| # control+right - review next word
 | |
| ^[[1;5C=review_next_word
 | |
| # shift+down - review current character
 | |
| ^[[1;2B=review_curr_char
 | |
| # shift+left - review previous character
 | |
| ^[[1;2D=review_prev_char
 | |
| # shift+right - review next character
 | |
| ^[[1;2C=review_next_char
 | |
| # control+shift+down - current character phonetic
 | |
| ^[[1;6B=curr_char_phonetic
 | |
| # control+shift+left - previous character phonetic
 | |
| ^[[1;6D=prev_char_phonetic
 | |
| # control+shift+right - next character phonetic
 | |
| ^[[1;6C=next_char_phonetic
 | |
| # f2 - toggle sound
 | |
| ^[OQ=toggle_sound
 | |
| # f3 - toggle highlight tracking
 | |
| ^[OR=toggle_highlight_tracking
 | |
| alt+f12 - quit fenrir
 | |
| ^[[24;3~=quit_fenrir
 | |
| # alt+f12 - time
 | |
| ^[[24;3~=time
 | |
| # 2,alt+f12 - date
 | |
| 2,^[[24;3~=date
 | |
| # alt+[ - previous clipboard
 | |
| ^[[=prev_clipboard
 | |
| # alt+] - next clipboard
 | |
| ^[]=next_clipboard
 | |
| # control+f6 - Read current clipboard
 | |
| ^[[17;5~=curr_clipboard
 | |
| # f6 - copy to clipboard
 | |
| ^[[17~=copy_marked_to_clipboard
 | |
| # shift+f6 - clear clipboard
 | |
| ^[[17;2~=clear_clipboard
 | |
| # f7 - paste clipboard
 | |
| ^[[18~=paste_clipboard
 | |
| # alt+f8 - export clipboard to X
 | |
| ^[[19;3~=export_clipboard_to_x
 | |
| # control+f8 - import clipboard from X
 | |
| ^[[19;5~=import_clipboard_from_x
 | |
| # alt+f9 - export clipboard to file
 | |
| ^[[20;3~=export_clipboard_to_file
 | |
| # control+f9 - import clipboard from file
 | |
| ^[[20;5~=import_clipboard_from_file
 | |
| # shift+f5 - remove marks
 | |
| ^[[15;2~=remove_marks
 | |
| # f5 - set mark
 | |
| ^[[15~=set_mark
 | |
| # f8 - Last utterance to clipboard
 | |
| ^[[19~=copy_last_echo_to_clipboard
 | |
| # lat+\ Toggle auto announcement of indentation
 | |
| ^[\=toggle_auto_indent
 | |
| # alt+end - temperarily disable speech
 | |
| ^[[1;3F=temp_disable_speech
 | |
| # control+end - toggle auto read
 | |
| ^[[1;5F=toggle_auto_read
 | |
| # F12 - cycle keyboard layout
 | |
| ^[[24~=cycle_keyboard_layout
 |