You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for cloaking in Fzf Lua, similar to the existing support for Telescope.
Why
Fzf Lua is a powerful and popular finder tool within the Neovim ecosystem. Supporting Fzf Lua in cloak.nvim would allow users who prefer Fzf Lua over Telescope to benefit from the cloaking features, enhancing privacy and reducing distractions during code navigation and file searching.
How
Implement a configuration flag similar to the cloak_telescope option, which when set to true, will enable cloaking for Fzf Lua buffers. Here's a proposed configuration snippet:
-- Set to true to cloak Fzf Lua preview buffers. (Proposed feature)cloak_fzf_lua=true,
The implementation would need to hook into the Fzf Lua plugin's buffer creation and apply cloaking rules similar to those used for Telescope.
The text was updated successfully, but these errors were encountered:
While it is great, currently my plugin focuses to work with .env files and their patterns explicitly. Cloak provides more lightweight/minimal approach and some of the customization options that my plugin doesn't have.
However, if your main way to use mask is to use it with .env files and environment variables be sure to check it out
feryardiant
added a commit
to feryardiant/config-nvim
that referenced
this issue
Jan 26, 2025
A plugin that claims to provide privacy over our `dotenv`
files by hiding/masking the values of all environment variables
and apparently has quite a lot of feature out of the box.
Previously I've tried `laytan/cloak.nvim` after watching
video from TJ DeVries. But after seeing laytan/cloak.nvim#17
and find out that `ecolog.nvim` has quite interesting features
I decided to give it a try.
Signed-off-by: Fery Wardiyanto <[email protected]>
What
Add support for cloaking in Fzf Lua, similar to the existing support for Telescope.
Why
Fzf Lua is a powerful and popular finder tool within the Neovim ecosystem. Supporting Fzf Lua in cloak.nvim would allow users who prefer Fzf Lua over Telescope to benefit from the cloaking features, enhancing privacy and reducing distractions during code navigation and file searching.
How
Implement a configuration flag similar to the cloak_telescope option, which when set to true, will enable cloaking for Fzf Lua buffers. Here's a proposed configuration snippet:
The implementation would need to hook into the Fzf Lua plugin's buffer creation and apply cloaking rules similar to those used for Telescope.
The text was updated successfully, but these errors were encountered: