gitextract_e148xi2d/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ └── feature_request.md │ └── workflows/ │ └── integration.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── CHANGELOG.md ├── DESCRIPTION ├── Dockerfile ├── Gemfile ├── INSTALL.md ├── LICENSE ├── Makefile ├── README.md ├── URL ├── VERSION ├── ZSH_VERSIONS ├── install_test_zsh.sh ├── spec/ │ ├── async_spec.rb │ ├── integrations/ │ │ ├── auto_cd_spec.rb │ │ ├── bracketed_paste_magic_spec.rb │ │ ├── client_zpty_spec.rb │ │ ├── glob_subst_spec.rb │ │ ├── rebound_bracket_spec.rb │ │ ├── vi_mode_spec.rb │ │ ├── wrapped_widget_spec.rb │ │ └── zle_input_stack_spec.rb │ ├── kill_ring_spec.rb │ ├── line_init_spec.rb │ ├── multi_line_spec.rb │ ├── options/ │ │ ├── buffer_max_size_spec.rb │ │ ├── highlight_style_spec.rb │ │ ├── original_widget_prefix_spec.rb │ │ ├── strategy_spec.rb │ │ └── widget_lists_spec.rb │ ├── spec_helper.rb │ ├── strategies/ │ │ ├── completion_spec.rb │ │ ├── history_spec.rb │ │ ├── match_prev_cmd_spec.rb │ │ └── special_characters_helper.rb │ ├── terminal_session.rb │ └── widgets/ │ ├── disable_spec.rb │ ├── enable_spec.rb │ ├── fetch_spec.rb │ └── toggle_spec.rb ├── src/ │ ├── async.zsh │ ├── bind.zsh │ ├── config.zsh │ ├── fetch.zsh │ ├── highlight.zsh │ ├── start.zsh │ ├── strategies/ │ │ ├── completion.zsh │ │ ├── history.zsh │ │ └── match_prev_cmd.zsh │ ├── util.zsh │ └── widgets.zsh ├── zsh-autosuggestions.plugin.zsh └── zsh-autosuggestions.zsh