Tuan Bui
Tuan Bui
> @tuanbass Hello, you have pushed some new commits to the `master` branch of your repo, while it's about scrolling, but not VisualMode. This affects this PR because the PR...
The reason here is, sway use "floatting_con" instead of "con" as the type of scratch window
> This was implemented in this PR: #134 > > early_exit=true in config works exactly as you desired I believe. Even with early_exit=true, the picture is not saved when I...
> You're right @tuanbass. I read the originally requested functionality backwards. > > early_exit makes it so that when you click the copy to clip board button or the save...
I create a PR for this feature at #168.
> For now, I have documented all mappings. Which-key should pick these descriptions and show then in the overlay menu. The remaining part would be to group the mappings if...
> This is really on purpose based on timestamp when you save the file. We could generate an ID for each session but that could be seen as breaking change....
It could be fixed with a simple: ``` vim.api.nvim_buf_set_option(0, "buflisted", true) ``` But I dont know which event I should put the command. Tried with BufAdd but it's seem have...
it's really important feature! +1
> Can't you do it with something like this? > > ```lua > vim.api.nvim_create_autocmd("BufAdd", { > callback = function(args) > if args.file:match ".*.test.ts" then > vim.cmd.Bdelete() -- famiu/bufdelete.nvim > vim.cmd.tabfirst()...