Skip to content

Helios Shortcuts in the Source Editor

Philippe Back edited this page Jan 22, 2015 · 3 revisions
pcKeyMap
^ #{
	'Alt-Left' -> 		'goLineStart'. 
	'Alt-Right' -> 		'goLineEnd'.
	'Alt-Up' -> 		'goDocStart'. 
	'Ctrl-A' -> 		'selectAll'. 
	'Ctrl-Backspace' -> 'delWordBefore'. 
	'Ctrl-D' -> 		'doIt'. 
	'Ctrl-B' -> 		'browseIt'. 
	'Ctrl-Delete' -> 		'delWordAfter'. 
	'Ctrl-Down' -> 		'goDocEnd'.
	'Ctrl-End' -> 		'goDocEnd'. 
	'Ctrl-F' -> 		'find'.
	'Ctrl-G' -> 		'findNext'. 
	'Ctrl-I' -> 		'inspectIt'.
	'Ctrl-Home' -> 		'goDocStart'. 
	'Ctrl-Left' -> 		'goWordLeft'. 
	'Ctrl-P' -> 		'printIt'.
	'Ctrl-Right' -> 	'goWordRight'. 
	'Ctrl-S' -> 		'saveIt'. 
	'Ctrl-Y' -> 		'redo'.
	'Ctrl-Z' -> 		'undo'. 
	'Ctrl-[' -> 		'indentLess'. 
	'Ctrl-]' -> 		'indentMore'.
	'Shift-Ctrl-F' -> 	'replace'. 
	'Shift-Ctrl-G' -> 	'findPrev'. 
	'Shift-Ctrl-R' -> 	'replaceAll'.
	'Shift-Ctrl-Z' -> 	'redo'. 
	'fallthrough' -> 	#('basic')
}

They do not all work properly but are useful to know still.

These are the PC keys, Mac Keys with Cmd.

Clone this wiki locally