Esempio n. 1
0
 public void NextCommand()
 {
     Create("");
     _commandHistoryList.AddRange("dog", "cat");
     _vimBuffer.ProcessNotation(":<Up><Up><Down>");
     Assert.Equal("cat", _commandMode.Command);
 }
Esempio n. 2
0
        public async Task <List <ImportIndexItem> > Importer(IEnumerable <string> inputFullPathList, ImportSettingsModel importSettings)
        {
            var preflight = await Preflight(inputFullPathList.ToList(), importSettings);

            HistoryList.AddRange(preflight);
            return(preflight);
        }