Myzel394 / jsonfly.nvim

❴🦋❵ Fly through your JSON / XML / YAML files with ease. Search ✨ blazingly fast ✨ for keys via Telescope.
125 stars 2 forks source link

Does not respect provided `theme` #11

Closed serhez closed 1 month ago

serhez commented 1 month ago

The plugin does not seem to respect the telescope theme provided in the command/config. I have tried providing the theme in the config

extensions = {
    jsonfly = {
    theme = "ivy",
    prompt_title = "JSON keys",
    },
}

as well as specifying it in the command

j = { "<cmd>Telescope jsonfly theme=ivy<cr>", "JSON keys" }

Is there any other way to do it I'm missing? Thank you! :)

Myzel394 commented 1 month ago

Hey @serhez,

this should work now via specifying your theme in the command. I wasn't able to get it to work by specifying it in the config table unfortunately. However, I tried this setting on other extensions and none of them worked, so I guess it's some issue with telescope itself.

Nevertheless, you should be able to use it by using the aforementioned command variant :)

serhez commented 1 month ago

Thank you! 🙂