gitextract_wntplryt/ ├── .dockerignore ├── .gitignore ├── .node-version ├── .npmrc ├── .nvmrc ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── build/ │ └── icon.icns ├── docs/ │ └── vscodedebugging.md ├── package.json ├── src/ │ ├── Autocompletion.ts │ ├── Char.ts │ ├── Decorators.ts │ ├── EmitterWithUniqueID.ts │ ├── Enums.ts │ ├── Interfaces.ts │ ├── Output.ts │ ├── PTY.ts │ ├── PluginManager.ts │ ├── main/ │ │ └── Main.ts │ ├── monaco/ │ │ ├── Loader.ts │ │ ├── PromptTheme.ts │ │ ├── ShellHistoryLanguage.ts │ │ └── ShellLanguage.ts │ ├── plugins/ │ │ ├── AliasSuggestions.ts │ │ ├── DotEnvLoader.ts │ │ ├── GitGrep.tsx │ │ ├── JSON.tsx │ │ ├── JobFinishedNotifications.ts │ │ ├── NVM.ts │ │ ├── PWDOperatingSystemIntegrator.ts │ │ ├── RVM.ts │ │ ├── SaveHistory.ts │ │ ├── SaveWindowBounds.ts │ │ ├── Show.tsx │ │ ├── UpdateLastPresentWorkingDirectory.ts │ │ ├── completion/ │ │ │ ├── Brew.ts │ │ │ ├── Cat.ts │ │ │ ├── Cd.ts │ │ │ ├── Cp.ts │ │ │ ├── Df.ts │ │ │ ├── Executable.ts │ │ │ ├── Find.ts │ │ │ ├── Git.ts │ │ │ ├── Grep.ts │ │ │ ├── History.ts │ │ │ ├── Ln.ts │ │ │ ├── Locate.ts │ │ │ ├── Ls.ts │ │ │ ├── Mkdir.ts │ │ │ ├── Mv.ts │ │ │ ├── NPM.ts │ │ │ ├── Ps.ts │ │ │ ├── Pwd.ts │ │ │ ├── Rails.ts │ │ │ ├── Rake.ts │ │ │ ├── Rm.ts │ │ │ ├── Scp.ts │ │ │ ├── Shutdown.ts │ │ │ ├── Tail.ts │ │ │ ├── Top.ts │ │ │ └── Vagrant.ts │ │ └── completion_utils/ │ │ ├── Button.tsx │ │ ├── Combine.ts │ │ ├── Common.ts │ │ └── Descriptions.ts │ ├── references.d.ts │ ├── services/ │ │ ├── FontService.ts │ │ ├── GitService.ts │ │ ├── HistoryService.ts │ │ ├── JobsService.ts │ │ ├── SessionsService.ts │ │ ├── UpdatesService.ts │ │ ├── WindowService.ts │ │ └── index.ts │ ├── shell/ │ │ ├── Aliases.ts │ │ ├── BuiltInCommands.ts │ │ ├── CommandExecutor.ts │ │ ├── Environment.ts │ │ ├── Job.ts │ │ ├── Parser.ts │ │ ├── Prompt.ts │ │ ├── Scanner.ts │ │ └── Session.ts │ ├── utils/ │ │ ├── Common.ts │ │ ├── Git.ts │ │ ├── HistoryTrie.ts │ │ ├── JSONTree.tsx │ │ ├── Link.tsx │ │ ├── ManPageParsingUtils.ts │ │ ├── ManPages.ts │ │ ├── OrderedSet.ts │ │ ├── Process.ts │ │ └── Shell.ts │ └── views/ │ ├── ApplicationComponent.tsx │ ├── JobComponent.tsx │ ├── JobHeaderComponent.tsx │ ├── Main.tsx │ ├── OutputComponent.tsx │ ├── PrettifyToggleComponent.tsx │ ├── PromptComponent.tsx │ ├── SearchComponent.tsx │ ├── SessionComponent.tsx │ ├── TabComponent.tsx │ ├── TabHeaderComponent.tsx │ ├── ViewUtils.ts │ ├── css/ │ │ ├── FontAwesome.ts │ │ ├── colors.ts │ │ ├── functions.ts │ │ └── styles.ts │ ├── index.html │ ├── keyevents/ │ │ └── Keybindings.ts │ ├── menu/ │ │ └── Menu.ts │ └── mouseevents/ │ └── MouseEvents.ts ├── test/ │ ├── e2e.ts │ ├── environment_spec.ts │ ├── output_spec.ts │ ├── pty_spec.ts │ ├── references.d.ts │ ├── shell/ │ │ └── scanner_spec.ts │ ├── test_files/ │ │ ├── file_names_test/ │ │ │ └── file with brackets() │ │ └── vttest/ │ │ ├── 1-1 │ │ ├── 1-2 │ │ ├── 1-3 │ │ ├── 1-4 │ │ ├── 1-5 │ │ ├── 1-6 │ │ ├── 2-1 │ │ ├── 2-10 │ │ ├── 2-11 │ │ ├── 2-12 │ │ ├── 2-13 │ │ ├── 2-14 │ │ ├── 2-15 │ │ ├── 2-2 │ │ ├── 2-3 │ │ ├── 2-4 │ │ ├── 2-5 │ │ ├── 2-6 │ │ ├── 2-7 │ │ ├── 2-8 │ │ └── 2-9 │ └── utils/ │ ├── ManPages_spec.ts │ ├── common_spec.ts │ ├── history_trie_spec.ts │ └── ordered_set_spec.ts ├── tsconfig.json ├── tslint.json └── typings/ ├── Interfaces.d.ts ├── Overrides.d.ts ├── child-process-promise.d.ts ├── dirStat.d.ts ├── mode-to-permissions.d.ts └── uuid.d.ts