Stefan Novaković

Results 31 comments of Stefan Novaković

I don't know if this helps, but I solved the 'flash of startup page' with the following code: ```lua -- If the current buffer is a 'No Name' buffer, display...

Hi, thanks for reporting this. I'll need to think about this one. The problem is that maybe someone wants the Telescope to be above screenkey window (because the Telescope is...

> I can also see a scenario, when a person doesn't want to dive deep into how nvim internals work and they would like to have a shortcut for those...

Sorry, I'm closing this PR since it got stale and I did some work on screenkey in the meantime. However, I added the features you proposed in this PR and...

> On the other hand, when typing sentences, a more adequate calculation would be to take into account the actual content being typed. I agree. That's a way more precise...

Hi! I usually like to leave this type of functionality to users. > and it just autostarts because setting autocmds to VimEnter in lazyvim is a pain I don't know...

Closing this issue because of a long time of inactivity. Feel free to reopen if you still have problems.

Hi, sorry for the late reply. I like the idea, do you mind checking out the [filter](https://github.com/NStefan002/screenkey.nvim/tree/filter) branch to try out this new feature before I release it? If you're...

@miron2363 makes sense. How about this: ```lua filter = function(keys) return vim.iter(keys) :filter(function(k) return (k.key ~= "j" and k.key ~= "k") or k.is_mapping end) :totable() end, ``` In this variation,...

This feature has been added to the [2.3.0](https://github.com/NStefan002/screenkey.nvim/releases/tag/v2.3.0) release, but I'll leave this issue open since the feature is still experimental.