/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/cmdpal/Microsoft.Terminal.UI/RunHistory.h
21 строка
475 B
Mike Griese
CmdPal: Add history to the new run page (#40427)
23 июл 2025, 14:51
Не верифицирован
23 июл 2025, 14:51
3b3df5b
Код
Авторство
О чём код?
#pragma once #include "RunHistory.g.h" #include "types.h" namespace winrt::Microsoft::Terminal::UI::implementation { struct RunHistory { RunHistory() = default; static winrt::Windows::Foundation::Collections::IVector<hstring> CreateRunHistory(); private: winrt::Windows::Foundation::Collections::IVector<hstring> _mruHistory; }; } namespace winrt::Microsoft::Terminal::UI::factory_implementation { BASIC_FACTORY(RunHistory); }