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

[RDY] Notification provider #13843

Merged
merged 3 commits into from
Feb 8, 2021
Merged

[RDY] Notification provider #13843

merged 3 commits into from
Feb 8, 2021

Commits on Jan 30, 2021

  1. feat: adds vim.notify

    Adds function to notify the user like this:
    `:lua vim.notify("hello user")`
    embeds log levels vim.log.levels.
    
    you can then reassign vim.notify to for instance
    ```
    function notify_external(msg, log_level, opts)
    	vim.fn.jobstart({"notify-send", msg })
    end
    ```
    teto committed Jan 30, 2021
    Configuration menu
    Copy the full SHA
    3f81f5c View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2021

  1. api: add nvim_notify

    parameters are mandatory
    teto committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    bb22c78 View commit details
    Browse the repository at this point in the history
  2. test: test vim-notify

    teto committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    a90a437 View commit details
    Browse the repository at this point in the history