mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
* WIP * WIP * Wip * Wip * wip * Refactor without normalize and plugin * Replace extendKeymaps by decorateKeymaps * WIP * Add mousetrap * Add first command over rpc * More commands * Add all commands * Begin to hook commands * Working multiple keymaps * Use redux action to trigger command * Use forked version of Mousetrap to capture key events * Fix lint * Add command in redux action to debug purpose * ExecCommand from menu click * Remove unused files * Fix xterm should ignore catched events * Re-enable IntelliSense checking * Remove unused runes dep
40 lines
913 B
JavaScript
40 lines
913 B
JavaScript
module.exports = {
|
|
availableExtensions: new Set([
|
|
'onApp',
|
|
'onWindow',
|
|
'onRendererWindow',
|
|
'onUnload',
|
|
'middleware',
|
|
'reduceUI',
|
|
'reduceSessions',
|
|
'reduceTermGroups',
|
|
'decorateBrowserOptions',
|
|
'decorateMenu',
|
|
'decorateTerm',
|
|
'decorateHyper',
|
|
'decorateHyperTerm', // for backwards compatibility with hyperterm
|
|
'decorateHeader',
|
|
'decorateTerms',
|
|
'decorateTab',
|
|
'decorateNotification',
|
|
'decorateNotifications',
|
|
'decorateTabs',
|
|
'decorateConfig',
|
|
'decorateKeymaps',
|
|
'decorateEnv',
|
|
'decorateTermGroup',
|
|
'decorateSplitPane',
|
|
'getTermProps',
|
|
'getTabProps',
|
|
'getTabsProps',
|
|
'getTermGroupProps',
|
|
'mapHyperTermState',
|
|
'mapTermsState',
|
|
'mapHeaderState',
|
|
'mapNotificationsState',
|
|
'mapHyperTermDispatch',
|
|
'mapTermsDispatch',
|
|
'mapHeaderDispatch',
|
|
'mapNotificationsDispatch'
|
|
])
|
|
};
|