We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Edit the map variable in the function symbolize, as is already templateTitle, cheatSheetDescription, etc.
hotkeysProvider.mapInit = { command: '\u2318', // ⌘ shift: '\u21E7', // ⇧ left: '\u2190', // ← right: '\u2192', // → up: '\u2191', // ↑ down: '\u2193', // ↓ 'return': '\u23CE', // ⏎ backspace: '\u232B', // ⌫ home: 'Inicio', end: 'Fin', space: 'Espacio', f2: 'F2' };
var mapaInit = this.mapInit; // define in config function symbolize (combo) { --> var map = mapaInit; combo = combo.split('+'); for (var i = 0; i < combo.length; i++) { // try to resolve command / ctrl based on OS: if (combo[i] === 'mod') { if ($window.navigator && $window.navigator.platform.indexOf('Mac') >=0 ) { combo[i] = 'command'; } else { combo[i] = 'ctrl'; } } combo[i] = map[combo[i]] || combo[i]; } return combo.join(' + '); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Edit the map variable in the function symbolize, as is already templateTitle, cheatSheetDescription, etc.
hotkeysProvider.mapInit = {
command: '\u2318', // ⌘
shift: '\u21E7', // ⇧
left: '\u2190', // ←
right: '\u2192', // →
up: '\u2191', // ↑
down: '\u2193', // ↓
'return': '\u23CE', // ⏎
backspace: '\u232B', // ⌫
home: 'Inicio',
end: 'Fin',
space: 'Espacio',
f2: 'F2'
};
The text was updated successfully, but these errors were encountered: