| 189 | } |
| 190 | |
| 191 | std::optional<ShortcutManager::ShortcutKey> ShortcutManager::findShortcutByName( const std::string& name ) const |
| 192 | { |
| 193 | auto it = backMap_.find( name ); |
| 194 | if ( it == backMap_.end() ) |
| 195 | return {}; |
| 196 | return kayAndModFromMapKey( it->second ); |
| 197 | } |
| 198 | |
| 199 | void ShortcutManager::clear() |
| 200 | { |
no test coverage detected