├── .clang-format ├── .gitignore ├── Config └── DefaultUnrealMotions.ini ├── Content ├── Dev │ ├── Debugging │ │ ├── BufferVisualizer │ │ │ └── EUW_BufferVisualizer.uasset │ │ ├── EUW_FocusDebugger.uasset │ │ └── EUW_WindowDebugger.uasset │ └── FoundationalWidgets │ │ ├── TabManager │ │ └── EUW_CommandHotkeySetupMenuInstance.uasset │ │ └── WindowManager │ │ ├── EUW_KeyValueParamDebugInstance.uasset │ │ └── EUW_WinDebugInstance.uasset ├── EUW_HotkeySetupAssist.uasset └── Textures │ └── HintMarkerGradientBackground.uasset ├── Docs ├── euw-hotkey-assist-graph-bookmarks.png ├── euw-hotkey-assist-major-tab-nav.png ├── euw-hotkey-assist-minor-tab-nav.png ├── euw-hotkey-assist-viewport-bookmarks.png └── windows-navigation │ └── windows-navigation-preferences.png ├── LICENSE ├── Notes ├── Snippets │ ├── OutlinerControlNavigationManually.cpp │ ├── Snippets.md │ ├── TabSnippets.md │ ├── TreeLayoutSnippets.md │ └── WindowsSnipptes.md └── TabManager-DelegateInconsistency.md ├── README.md ├── Resources └── Icon128.png ├── Source └── UnrealMotions │ ├── Private │ ├── ErgonomicsUtilityObject.cpp │ ├── SUMFocusDebugOverlay.cpp │ ├── SUMSearch.cpp │ ├── SUMStatusBarWidget.cpp │ ├── SVimConsole.cpp │ ├── UMAssetManager.cpp │ ├── UMBufferVisualizer.cpp │ ├── UMConfig.cpp │ ├── UMEditorCommands.cpp │ ├── UMEditorHelpers.cpp │ ├── UMFocusDebuggerUtilityWidget.cpp │ ├── UMFocusHelpers.cpp │ ├── UMFocusVisualizer.cpp │ ├── UMFocuserEditorSubsystem.cpp │ ├── UMInputHelpers.cpp │ ├── UMLogger.cpp │ ├── UMSlateHelpers.cpp │ ├── UMTabNavigatorEditorSubsystem.cpp │ ├── UMWindowDebugger.cpp │ ├── UMWindowNavigatorEditorSubsystem.cpp │ ├── UnrealMotions.cpp │ ├── VimEditorSubsystem.cpp │ ├── VimGraphEditorSubsystem.cpp │ ├── VimInputProcessor.cpp │ ├── VimNavigationEditorSubsystem.cpp │ ├── VimStatusBarEditorSubsystem.cpp │ ├── VimTextEditorSubsystem.cpp │ └── VimTextEditorUtils.cpp │ ├── Public │ ├── Data │ │ ├── UMHotkeyInfo.h │ │ ├── UMHotkeySection.h │ │ ├── UMHotkeySectionInfo.h │ │ └── UMWindowInfo.h │ ├── ErgonomicsUtilityObject.h │ ├── SUMFocusDebugOverlay.h │ ├── SUMHintMarker.h │ ├── SUMHintOverlay.h │ ├── SUMSearch.h │ ├── SUMStatusBarWidget.h │ ├── SVimConsole.h │ ├── TabDragDropOperation.h │ ├── UMAssetManager.h │ ├── UMBufferVisualizer.h │ ├── UMConfig.h │ ├── UMDebugWidget.h │ ├── UMEditorCommands.h │ ├── UMEditorHelpers.h │ ├── UMFocusDebuggerUtilityWidget.h │ ├── UMFocusHelpers.h │ ├── UMFocusVisualizer.h │ ├── UMFocuserEditorSubsystem.h │ ├── UMGenericAppMessageHandler.h │ ├── UMHintWidgetTrieNode.h │ ├── UMInputHelpers.h │ ├── UMKeyChordTrieNode.h │ ├── UMLogger.h │ ├── UMSlateHelpers.h │ ├── UMTabNavigatorEditorSubsystem.h │ ├── UMWindowDebugger.h │ ├── UMWindowNavigatorEditorSubsystem.h │ ├── UMYankData.h │ ├── UnrealMotions.h │ ├── VimEditorSubsystem.h │ ├── VimGraphEditorSubsystem.h │ ├── VimInputProcessor.h │ ├── VimNavigationEditorSubsystem.h │ ├── VimStatusBarEditorSubsystem.h │ ├── VimTextEditorSubsystem.h │ ├── VimTextEditorUtils.h │ └── VimTextTypes.h │ └── UnrealMotions.Build.cs └── UnrealMotions.uplugin /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/DefaultUnrealMotions.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Config/DefaultUnrealMotions.ini -------------------------------------------------------------------------------- /Content/Dev/Debugging/BufferVisualizer/EUW_BufferVisualizer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Content/Dev/Debugging/BufferVisualizer/EUW_BufferVisualizer.uasset -------------------------------------------------------------------------------- /Content/Dev/Debugging/EUW_FocusDebugger.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Content/Dev/Debugging/EUW_FocusDebugger.uasset -------------------------------------------------------------------------------- /Content/Dev/Debugging/EUW_WindowDebugger.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Content/Dev/Debugging/EUW_WindowDebugger.uasset -------------------------------------------------------------------------------- /Content/Dev/FoundationalWidgets/TabManager/EUW_CommandHotkeySetupMenuInstance.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Content/Dev/FoundationalWidgets/TabManager/EUW_CommandHotkeySetupMenuInstance.uasset -------------------------------------------------------------------------------- /Content/Dev/FoundationalWidgets/WindowManager/EUW_KeyValueParamDebugInstance.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Content/Dev/FoundationalWidgets/WindowManager/EUW_KeyValueParamDebugInstance.uasset -------------------------------------------------------------------------------- /Content/Dev/FoundationalWidgets/WindowManager/EUW_WinDebugInstance.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Content/Dev/FoundationalWidgets/WindowManager/EUW_WinDebugInstance.uasset -------------------------------------------------------------------------------- /Content/EUW_HotkeySetupAssist.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Content/EUW_HotkeySetupAssist.uasset -------------------------------------------------------------------------------- /Content/Textures/HintMarkerGradientBackground.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Content/Textures/HintMarkerGradientBackground.uasset -------------------------------------------------------------------------------- /Docs/euw-hotkey-assist-graph-bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Docs/euw-hotkey-assist-graph-bookmarks.png -------------------------------------------------------------------------------- /Docs/euw-hotkey-assist-major-tab-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Docs/euw-hotkey-assist-major-tab-nav.png -------------------------------------------------------------------------------- /Docs/euw-hotkey-assist-minor-tab-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Docs/euw-hotkey-assist-minor-tab-nav.png -------------------------------------------------------------------------------- /Docs/euw-hotkey-assist-viewport-bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Docs/euw-hotkey-assist-viewport-bookmarks.png -------------------------------------------------------------------------------- /Docs/windows-navigation/windows-navigation-preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Docs/windows-navigation/windows-navigation-preferences.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/LICENSE -------------------------------------------------------------------------------- /Notes/Snippets/OutlinerControlNavigationManually.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Notes/Snippets/OutlinerControlNavigationManually.cpp -------------------------------------------------------------------------------- /Notes/Snippets/Snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Notes/Snippets/Snippets.md -------------------------------------------------------------------------------- /Notes/Snippets/TabSnippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Notes/Snippets/TabSnippets.md -------------------------------------------------------------------------------- /Notes/Snippets/TreeLayoutSnippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Notes/Snippets/TreeLayoutSnippets.md -------------------------------------------------------------------------------- /Notes/Snippets/WindowsSnipptes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Notes/Snippets/WindowsSnipptes.md -------------------------------------------------------------------------------- /Notes/TabManager-DelegateInconsistency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Notes/TabManager-DelegateInconsistency.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/ErgonomicsUtilityObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/ErgonomicsUtilityObject.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/SUMFocusDebugOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/SUMFocusDebugOverlay.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/SUMSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/SUMSearch.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/SUMStatusBarWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/SUMStatusBarWidget.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/SVimConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/SVimConsole.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMAssetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMAssetManager.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMBufferVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMBufferVisualizer.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMConfig.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMEditorCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMEditorCommands.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMEditorHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMEditorHelpers.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMFocusDebuggerUtilityWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMFocusDebuggerUtilityWidget.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMFocusHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMFocusHelpers.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMFocusVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMFocusVisualizer.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMFocuserEditorSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMFocuserEditorSubsystem.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMInputHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMInputHelpers.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMLogger.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMSlateHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMSlateHelpers.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMTabNavigatorEditorSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMTabNavigatorEditorSubsystem.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMWindowDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMWindowDebugger.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UMWindowNavigatorEditorSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UMWindowNavigatorEditorSubsystem.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/UnrealMotions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/UnrealMotions.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/VimEditorSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/VimEditorSubsystem.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/VimGraphEditorSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/VimGraphEditorSubsystem.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/VimInputProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/VimInputProcessor.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/VimNavigationEditorSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/VimNavigationEditorSubsystem.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/VimStatusBarEditorSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/VimStatusBarEditorSubsystem.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/VimTextEditorSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/VimTextEditorSubsystem.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Private/VimTextEditorUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Private/VimTextEditorUtils.cpp -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/Data/UMHotkeyInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/Data/UMHotkeyInfo.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/Data/UMHotkeySection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/Data/UMHotkeySection.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/Data/UMHotkeySectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/Data/UMHotkeySectionInfo.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/Data/UMWindowInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/Data/UMWindowInfo.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/ErgonomicsUtilityObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/ErgonomicsUtilityObject.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/SUMFocusDebugOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/SUMFocusDebugOverlay.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/SUMHintMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/SUMHintMarker.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/SUMHintOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/SUMHintOverlay.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/SUMSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/SUMSearch.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/SUMStatusBarWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/SUMStatusBarWidget.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/SVimConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/SVimConsole.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/TabDragDropOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/TabDragDropOperation.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMAssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMAssetManager.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMBufferVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMBufferVisualizer.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMConfig.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMDebugWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMDebugWidget.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMEditorCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMEditorCommands.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMEditorHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMEditorHelpers.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMFocusDebuggerUtilityWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMFocusDebuggerUtilityWidget.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMFocusHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMFocusHelpers.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMFocusVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMFocusVisualizer.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMFocuserEditorSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMFocuserEditorSubsystem.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMGenericAppMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMGenericAppMessageHandler.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMHintWidgetTrieNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMHintWidgetTrieNode.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMInputHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMInputHelpers.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMKeyChordTrieNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMKeyChordTrieNode.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMLogger.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMSlateHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMSlateHelpers.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMTabNavigatorEditorSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMTabNavigatorEditorSubsystem.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMWindowDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMWindowDebugger.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMWindowNavigatorEditorSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMWindowNavigatorEditorSubsystem.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UMYankData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UMYankData.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/UnrealMotions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/UnrealMotions.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/VimEditorSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/VimEditorSubsystem.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/VimGraphEditorSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/VimGraphEditorSubsystem.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/VimInputProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/VimInputProcessor.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/VimNavigationEditorSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/VimNavigationEditorSubsystem.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/VimStatusBarEditorSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/VimStatusBarEditorSubsystem.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/VimTextEditorSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/VimTextEditorSubsystem.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/VimTextEditorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/VimTextEditorUtils.h -------------------------------------------------------------------------------- /Source/UnrealMotions/Public/VimTextTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/Public/VimTextTypes.h -------------------------------------------------------------------------------- /Source/UnrealMotions/UnrealMotions.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/Source/UnrealMotions/UnrealMotions.Build.cs -------------------------------------------------------------------------------- /UnrealMotions.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BarakXYZ/Unreal-Motions/HEAD/UnrealMotions.uplugin --------------------------------------------------------------------------------