Skip to content

Commit

Permalink
Update zsh plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
janbuchar committed Jun 6, 2020
1 parent 2d61dbd commit 2e2b9d2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .zsh/oh-my-zsh
Submodule oh-my-zsh updated from 66bae5 to 93cc39
2 changes: 1 addition & 1 deletion .zsh/zsh-autosuggestions
Submodule zsh-autosuggestions updated 77 files
+15 −0 .circleci/config.yml
+8 −0 .editorconfig
+36 −0 .github/ISSUE_TEMPLATE/bug-report.md
+20 −0 .github/ISSUE_TEMPLATE/feature_request.md
+0 −6 .gitmodules
+3 −0 .rspec
+30 −0 .rubocop.yml
+1 −0 .ruby-version
+75 −0 CHANGELOG.md
+20 −0 Dockerfile
+5 −0 Gemfile
+41 −0 Gemfile.lock
+61 −0 INSTALL.md
+1 −1 LICENSE
+6 −18 Makefile
+68 −44 README.md
+1 −1 VERSION
+16 −0 ZSH_VERSIONS
+26 −0 install_test_zsh.sh
+0 −54 script/test_runner.zsh
+70 −0 spec/async_spec.rb
+14 −0 spec/integrations/auto_cd_spec.rb
+43 −0 spec/integrations/bracketed_paste_magic_spec.rb
+14 −0 spec/integrations/client_zpty_spec.rb
+12 −0 spec/integrations/glob_subst_spec.rb
+13 −0 spec/integrations/rebound_bracket_spec.rb
+80 −0 spec/integrations/vi_mode_spec.rb
+39 −0 spec/integrations/wrapped_widget_spec.rb
+24 −0 spec/integrations/zle_input_stack_spec.rb
+23 −0 spec/kill_ring_spec.rb
+17 −0 spec/line_init_spec.rb
+13 −0 spec/multi_line_spec.rb
+30 −0 spec/options/buffer_max_size_spec.rb
+7 −0 spec/options/highlight_style_spec.rb
+7 −0 spec/options/original_widget_prefix_spec.rb
+55 −0 spec/options/strategy_spec.rb
+7 −0 spec/options/use_async_spec.rb
+121 −0 spec/options/widget_lists_spec.rb
+51 −0 spec/spec_helper.rb
+72 −0 spec/strategies/completion_spec.rb
+23 −0 spec/strategies/history_spec.rb
+34 −0 spec/strategies/match_prev_cmd_spec.rb
+62 −0 spec/strategies/special_characters_helper.rb
+99 −0 spec/terminal_session.rb
+19 −0 spec/widgets/disable_spec.rb
+42 −0 spec/widgets/enable_spec.rb
+24 −0 spec/widgets/fetch_spec.rb
+26 −0 spec/widgets/toggle_spec.rb
+75 −0 src/async.zsh
+30 −15 src/bind.zsh
+72 −41 src/config.zsh
+0 −36 src/deprecated.zsh
+27 −0 src/fetch.zsh
+3 −3 src/highlight.zsh
+11 −1 src/start.zsh
+139 −0 src/strategies/completion.zsh
+0 −11 src/strategies/default.zsh
+32 −0 src/strategies/history.zsh
+19 −5 src/strategies/match_prev_cmd.zsh
+0 −21 src/suggestion.zsh
+11 −0 src/util.zsh
+136 −37 src/widgets.zsh
+0 −45 test/bind_test.zsh
+0 −73 test/highlight_test.zsh
+0 −56 test/strategies/default_test.zsh
+0 −74 test/strategies/match_prev_cmd_test.zsh
+0 −102 test/strategies_test.zsh
+0 −46 test/suggestion_test.zsh
+0 −60 test/test_helper.zsh
+0 −161 test/widgets/accept_test.zsh
+0 −77 test/widgets/clear_test.zsh
+0 −26 test/widgets/execute_test.zsh
+0 −88 test/widgets/modify_test.zsh
+0 −84 test/widgets/partial_accept_test.zsh
+0 −1 vendor/shunit2
+0 −1 vendor/stub.sh
+534 −149 zsh-autosuggestions.zsh
2 changes: 1 addition & 1 deletion .zsh/zsh-syntax-highlighting

0 comments on commit 2e2b9d2

Please sign in to comment.