├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── index.js ├── license ├── package.json ├── readme.md ├── test ├── fixture ├── test.js └── zsh-chinese-fixture └── test_win.bat /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/shell-history/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/shell-history/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/shell-history/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/shell-history/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/shell-history/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/shell-history/HEAD/readme.md -------------------------------------------------------------------------------- /test/fixture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/shell-history/HEAD/test/fixture -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/shell-history/HEAD/test/test.js -------------------------------------------------------------------------------- /test/zsh-chinese-fixture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/shell-history/HEAD/test/zsh-chinese-fixture -------------------------------------------------------------------------------- /test_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/shell-history/HEAD/test_win.bat --------------------------------------------------------------------------------