-
Notifications
You must be signed in to change notification settings - Fork 1
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
Installed, but no commands? #4
Comments
Hello! Thanks for trying out pulse! In this basic configuration, you have commented out the return {
"linguini1/pulse.nvim",
config = function() require("pulse").setup() end
} I also see in your config that it looks like you're calling return {
'linguini1/pulse.nvim',
version = "*",
config = function()
local pulse = require("pulse")
pulse.setup({ level = vim.log.levels.INFO })
pulse.add("Test", {
interval = 90,
message = "Test Message!",
enabled = True,
})
end
} Let me know if this resolves your issue! I will also update the documentation to make it clear that |
Thanks! I opened this issue and decided to leave my commented code in the issue for exactly this reason - very helpful. I'll try again with your instructions and happy to contribute to the docs if you don't have time to get around to it. |
Great! Please let me know if it works when you get around to it and I'll close this issue. I've opened PR #5 to clarify the docs, but if you feel something is missing I would be happy to have you as a contributor! |
Okay, we've got action and it's working as expected. Your config setup is perfect. The only other finding (which maybe should be a separate issue) is that I'll try to debug and see if I can find out more, but for the sake of the original intention of this issue, it can be closed. |
Please feel free to open another issue and I'll have a look! |
Thanks! |
I can't quite figure out if this is a plugin manager issue or the plugin. I'm using Lazy, and it shows as installed (see screenshot), but none of the commands work.
I've whittled the config down to a very basic setup using the readme. Any
:Pulse*
command saysE492: Not an editor command:
.By the way, with the command
:PulseSetTimer
, should the name param be in quotes?The text was updated successfully, but these errors were encountered: