// $XFree86$ // XFree86 special keysyms default partial xkb_compatibility "basic" { interpret.repeat= True; // Ctrl+C for Copy interpret XF86Copy { action = Redirect(Key=, modifiers=Control); }; // Ctrl+V for Paste interpret XF86Paste { action = Redirect(Key=, modifiers=Control); }; // Ctrl+X for Cut interpret XF86Cut { action = Redirect(Key=, modifiers=Control); }; // Ctrl+Pos1 for ScrollUp interpret XF86ScrollUp { action = Redirect(Key=, modifiers=Control); }; // Ctrl+End for ScrollDown interpret XF86ScrollDown { action = Redirect(Key=, modifiers=Control); }; // Ctrl+Shift+Z for Redo interpret Redo { action = Redirect(Key=, modifiers=Shift+Control); }; // Ctrl+Z for Undo interpret Undo { action = Redirect(Key=, modifiers=Control); }; // Backspace for Back (Firefox) interpret XF86Back { action = Redirect(Key=, modifiers=Mod1); }; // Shift+Backspace for Forward (Firefox) interpret XF86Forward { action = Redirect(Key=, modifiers=Mod1); }; // ESC for Stop (Firefox) interpret Cancel { action = Redirect(Key=); }; // Ctrl+R for Reload (Firefox) interpret XF86Reload { action = Redirect(Key=, modifiers=Control); }; // Ctrl+F for Search Page (Firefox and most other applications) interpret Find { action = Redirect(Key=, modifiers=Control); }; };