Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor!: remove support for deprecated features #210

Merged
merged 10 commits into from
Feb 11, 2023

Commits on Feb 10, 2023

  1. Configuration menu
    Copy the full SHA
    e5f0a17 View commit details
    Browse the repository at this point in the history
  2. refactor(command)!: drop quoted format support for callback

    BREAKING-CHANGE: `command!` drops support to resolve unnecessary quote on callback
    aileot committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    53ecd0c View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2023

  1. refactor(keymap)!: drop deprecated options to set Ex command

    BREAKING-CHANGE: `map!` no longer resolves quoted callback in itself.
    BREAKING-CHANGE: `map!` no longer accept special options `<command>`, `ex`, `<callback>`, and `cb`.
    BREAKING-CHANGE: `map!` no longer interpret callback of which the first symbol matches `^<.+>` as Lua function, but as Ex command.
    BREAKING-CHANGE: `map!` interprets callback in list as Lua function unless either symbol `&vim` precedes it or the first symbol of the list matches pattern `^<.+>`.
    aileot committed Feb 11, 2023
    Configuration menu
    Copy the full SHA
    0ac19cc View commit details
    Browse the repository at this point in the history
  2. refactor(autocmd)!: drop deprecated options to set key sequence

    BREAKING-CHANGE: `augroup!` & `autocmd!`/`au!` no longer resolves quoted callback in itself.
    BREAKING-CHANGE: `augroup!` & `autocmd!`/`au!` no longer accept special options `<command>`, `ex`, `<callback>`, and `cb`.
    BREAKING-CHANGE: `augroup!` & `autocmd!`/`au!` no longer interpret callback of which the first symbol matches `^<.+>` as Lua function, but as key sequence.
    BREAKING-CHANGE: `augroup!` & `autocmd!`/`au!` interprets callback in list as Lua function unless either symbol `&vim` precedes it or the first symbol of the list matches pattern `^<.+>`.
    aileot committed Feb 11, 2023
    Configuration menu
    Copy the full SHA
    51386b9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    aae4d02 View commit details
    Browse the repository at this point in the history
  4. test(keymap): update specs

    aileot committed Feb 11, 2023
    Configuration menu
    Copy the full SHA
    735d4d0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    737a780 View commit details
    Browse the repository at this point in the history
  6. test(autocmd): update specs

    aileot committed Feb 11, 2023
    Configuration menu
    Copy the full SHA
    f8964ee View commit details
    Browse the repository at this point in the history
  7. refactor!: remove deprecated macros

    BREAKING-CHANGE: remove deprecated `map!` wrapper macros: `nmap!`, `vmap!`, ...
    BREAKING-CHANGE: remove deprecated macro `augroup+`; use `augroup!` with `{:clear false}` instead.
    aileot committed Feb 11, 2023
    Configuration menu
    Copy the full SHA
    19c83bd View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d26e9c4 View commit details
    Browse the repository at this point in the history