Resources
Official Links
- GitHub Repository: https://github.com/donnyaw/cli-expander
- Issue Tracker: https://github.com/donnyaw/cli-expander/issues
- Documentation: This site
Community Match Files
Share and discover match file repositories:
- (Add links to community match file repositories)
Related Tools
Text Expanders
- Espanso — Cross-platform GUI text expander (espanso.org)
- Hammerspoon — macOS automation with text expansion (hammerspoon.org)
- TextExpander — Commercial text expansion (textexpander.com)
Terminal Tools
- fzf — Command-line fuzzy finder (github.com/junegunn/fzf)
- tmux — Terminal multiplexer (github.com/tmux/tmux)
- zoxide — Smarter directory navigation (github.com/ajeetdsouza/zoxide)
- atuin — Shell history with search (github.com/atuinsh/atuin)
YAML Tools
- yamllint — YAML file linter (github.com/adrienverge/yamllint)
- YAML Online Validator — yamlvalidator.com
Editor Integration
VSCode
Enable YAML schema validation for match files:
# yaml-language-server: $schema=https://raw.githubusercontent.com/...
Install the Red Hat YAML extension for autocompletion and validation.
Neovim
Using mason.nvim and lspconfig:
require('lspconfig').yamlls.setup({
settings = {
yaml = {
schemas = {
["https://raw.githubusercontent.com/..."] = "*.yml"
}
}
}
})
Tutorials and Guides
- (Add links to blog posts, video tutorials, or guides)