| 941 | } |
| 942 | |
| 943 | std::string App::getKeybind( const std::string& command ) { |
| 944 | auto it = mKeybindingsInvert.find( command ); |
| 945 | if ( it != mKeybindingsInvert.end() ) |
| 946 | return KeyBindings::keybindFormat( it->second ); |
| 947 | return mMainLayout->getKeyBindings().getCommandKeybindString( command ); |
| 948 | } |
| 949 | |
| 950 | ProjectDirectoryTree* App::getDirTree() const { |
| 951 | return mDirTree ? mDirTree.get() : nullptr; |
no test coverage detected