mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 15:26:46 -06:00
148 lines
2.3 KiB
JavaScript
148 lines
2.3 KiB
JavaScript
export default {
|
|
'erd_new_browser_tab': false,
|
|
'open_project': {
|
|
'alt': false,
|
|
'shift': false,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 79,
|
|
'char': 'o',
|
|
},
|
|
},
|
|
'save_project': {
|
|
'alt': false,
|
|
'shift': false,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 83,
|
|
'char': 's',
|
|
},
|
|
},
|
|
'save_project_as': {
|
|
'alt': false,
|
|
'shift': true,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 83,
|
|
'char': 's',
|
|
},
|
|
},
|
|
'generate_sql': {
|
|
'alt': true,
|
|
'shift': false,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 83,
|
|
'char': 's',
|
|
},
|
|
},
|
|
'download_image': {
|
|
'alt': true,
|
|
'shift': false,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 73,
|
|
'char': 'i',
|
|
},
|
|
},
|
|
'add_table': {
|
|
'alt': true,
|
|
'shift': false,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 65,
|
|
'char': 'a',
|
|
},
|
|
},
|
|
'edit_table': {
|
|
'alt': true,
|
|
'shift': false,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 69,
|
|
'char': 'e',
|
|
},
|
|
},
|
|
'clone_table': {
|
|
'alt': true,
|
|
'shift': false,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 67,
|
|
'char': 'c',
|
|
},
|
|
},
|
|
'drop_table': {
|
|
'alt': true,
|
|
'shift': false,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 68,
|
|
'char': 'd',
|
|
},
|
|
},
|
|
'add_edit_note': {
|
|
'alt': true,
|
|
'shift': false,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 78,
|
|
'char': 'n',
|
|
},
|
|
},
|
|
'one_to_many': {
|
|
'alt': true,
|
|
'shift': false,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 79,
|
|
'char': 'o',
|
|
},
|
|
},
|
|
'many_to_many': {
|
|
'alt': true,
|
|
'shift': false,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 77,
|
|
'char': 'm',
|
|
},
|
|
},
|
|
'auto_align': {
|
|
'alt': true,
|
|
'shift': false,
|
|
'control': true,
|
|
'key': {
|
|
'key_code': 76,
|
|
'char': 'l',
|
|
},
|
|
},
|
|
'zoom_to_fit': {
|
|
'alt': true,
|
|
'shift': true,
|
|
'control': false,
|
|
'key': {
|
|
'key_code': 70,
|
|
'char': 'f',
|
|
},
|
|
},
|
|
'zoom_in': {
|
|
'alt': true,
|
|
'shift': true,
|
|
'control': false,
|
|
'key': {
|
|
'key_code': 187,
|
|
'char': '+',
|
|
},
|
|
},
|
|
'zoom_out': {
|
|
'alt': true,
|
|
'shift': true,
|
|
'control': false,
|
|
'key': {
|
|
'key_code': 189,
|
|
'char': '-',
|
|
},
|
|
},
|
|
};
|