m4xshen / hardtime.nvim

Establish good command workflow and quit bad habit
MIT License
1.38k stars 26 forks source link

Not Getting Recommendations #2

Closed jrock2004 closed 1 year ago

jrock2004 commented 1 year ago

So maybe this has something to do with another plugin, but I was testing hitting the down arrow. I was expecting the hey there is a better way, but it never tells me the better way

image

Config can be found here

{
    "m4xshen/hardtime.nvim",
    opts = {
      hint = true,
    }
  },
delightfulabyss commented 1 year ago

Seconding this. I'm using the default config and I'm not getting any of the recommendations specified in the readme.

m4xshen commented 1 year ago

Seconding this. I'm using the default config and I'm not getting any of the recommendations specified in the readme.

Do you set the 'cmdheight' option to zero or use plugin like noice.nvim?

delightfulabyss commented 1 year ago

Seconding this. I'm using the default config and I'm not getting any of the recommendations specified in the readme.

Do you set the 'cmdheight' option to zero or use plugin like noice.nvim?

Nope, I just use the regular command line.

delightfulabyss commented 1 year ago

Apologies, I am getting the hints now. I think it was an issue with my setup.

jrock2004 commented 1 year ago

Apologies, I am getting the hints now. I think it was an issue with my setup.

What did you do to figure it out?

jrock2004 commented 1 year ago

Just tried with my https://www.lazyvim.org config and it does not work at all for me

m4xshen commented 1 year ago

Cloud you please try to disable the noice.nvim and see whether it works?

jrock2004 commented 1 year ago

@m4xshen disabled noice and still does not work

jrock2004 commented 1 year ago

Interesting fine with my lazyvim if I do shift+v then I hit j a bunch of times I get the blockage

m4xshen commented 1 year ago

It doesn't block the repeated keys in the normal mode?

jrock2004 commented 1 year ago

Nope

m4xshen commented 1 year ago

Hey, could you please install the latest version and add this to your config:

vim.notify = require("notify")

and then see whether the issue is solved

jrock2004 commented 1 year ago

Updated the config to the following and now its worse and nothing works

return {
  "m4xshen/hardtime.nvim",
  config = function()
    vim.notify = require("notify")
  end,
  opts = {
    disable_mouse = false,
    hint = true,
  },
}
m4xshen commented 1 year ago

Notice that you should set vim.notify = require("notify") at where you install nvim-notify.