This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<keymap version="1" name="Default copy" parent="$default"> | |
<action id="Back"> | |
<keyboard-shortcut first-keystroke="control alt LEFT" /> | |
<mouse-shortcut keystroke="button4" /> | |
<keyboard-shortcut first-keystroke="control meta LEFT" /> | |
</action> | |
<action id="EditorNextWord"> | |
<keyboard-shortcut first-keystroke="control RIGHT" /> | |
<keyboard-shortcut first-keystroke="meta RIGHT" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<root> | |
<appdef> | |
<appname>JETBRAINS</appname> | |
<prefix>com.jetbrains.</prefix> | |
</appdef> | |
<appdef> | |
<appname>SKYPE</appname> | |
<equal>com.skype.skype</equal> | |
</appdef> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Include prepend.inc to load Qcodo | |
require('includes/configuration/prepend.inc.php'); | |
class ExampleForm extends QForm { | |
/** @var QAutocomplete */ | |
protected $ac; | |
/** @var QJqButton */ | |
protected $btnClear; |