This repository was archived by the owner on May 16, 2024. It is now read-only.
Is there a dedicated filetype for floating window opened by the plugin? #36
-
| I want to turn off Could you please guide me on how to proceed? |
Beta Was this translation helpful? Give feedback.
Answered by luckasRanarison Aug 30, 2023
Replies: 1 comment 1 reply
-
| I think it's possible with the new option from this PR, you could add a callback with { -- other options here after_open = function(bufnr) vim.bo[bufnr].ft = "my_custom_ft" end }Then you could just add this custom filetype to your ignore list. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by skoch13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

I think it's possible with the new option from this PR, you could add a callback with
after_openand set a custom filetype like this:{ -- other options here after_open = function(bufnr) vim.bo[bufnr].ft = "my_custom_ft" end }Then you could just add this custom filetype to your ignore list.