├── .editorconfig ├── .github ├── labeler.yml └── workflows │ ├── assign.yml │ ├── labeler.yml │ ├── sync-labels.yml │ ├── trunk-check.yml │ └── zsh-n.yml ├── .gitignore ├── .trunk ├── .gitignore ├── configs │ └── .markdownlint.yaml └── trunk.yaml ├── H-S-MW.plugin.zsh ├── LICENSE ├── docs ├── CHANGELOG.md └── README.md └── functions ├── history-search-multi-word ├── hsmw-context-main └── hsmw-highlight /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/.github/workflows/assign.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/.github/workflows/sync-labels.yml -------------------------------------------------------------------------------- /.github/workflows/trunk-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/.github/workflows/trunk-check.yml -------------------------------------------------------------------------------- /.github/workflows/zsh-n.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/.github/workflows/zsh-n.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/.gitignore -------------------------------------------------------------------------------- /.trunk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/.trunk/.gitignore -------------------------------------------------------------------------------- /.trunk/configs/.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/.trunk/configs/.markdownlint.yaml -------------------------------------------------------------------------------- /.trunk/trunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/.trunk/trunk.yaml -------------------------------------------------------------------------------- /H-S-MW.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/H-S-MW.plugin.zsh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/docs/README.md -------------------------------------------------------------------------------- /functions/history-search-multi-word: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/functions/history-search-multi-word -------------------------------------------------------------------------------- /functions/hsmw-context-main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/functions/hsmw-context-main -------------------------------------------------------------------------------- /functions/hsmw-highlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/H-S-MW/HEAD/functions/hsmw-highlight --------------------------------------------------------------------------------