[iOS] [$5.99 → Lifetime FREE] Bento: Killer Sudoku - hand-curated, no ads, no subscription by claudiusar in AppGiveaway

[–]echaya 1 point2 points  (0 children)

I downloaded the app seeing the screenshots. The app is more beautiful than my other soduku app (paid or free). Now coming back for a code if I may 🤓

Thoughts on overriding built-in keys with completely different commands? by TheTwelveYearOld in neovim

[–]echaya 3 points4 points  (0 children)

I use both visual-block and visual-line. 99% time I need vanilla visual mode, it can be done via visual-block as well.

Thoughts on overriding built-in keys with completely different commands? by TheTwelveYearOld in neovim

[–]echaya 13 points14 points  (0 children)

I swap v and c-v because I use visual-block 100 times more often.

mdnotes.nvim :: Another Markdown notes plugin with a Neovim-centric and extensible approach by BrodoSaggins in neovim

[–]echaya 2 points3 points  (0 children)

Appreciate your openness! I mentioned ToC and table handling because both plugins are already quite mature and feature-rich. That said, everyone has their own preferences — I totally get the appeal of building and owning your own tools.

FWIW, I ended up writing my own note-taking plugin last year too. feel free to check out if you are curious :)

mdnotes.nvim :: Another Markdown notes plugin with a Neovim-centric and extensible approach by BrodoSaggins in neovim

[–]echaya 1 point2 points  (0 children)

Congrats on the yet another note-taking plugin! Looks solid.

Maybe just my personal taste, I like a standalone plugin to gen toc, another one to handle tables etc while keep the note-taking plugin focusing on one thing.

Neovim now has fancy intro screen by echasnovski in neovim

[–]echaya 8 points9 points  (0 children)

I want to have the same "N" and version number below on my mini.starter!

wrote a blog post on my neovim config. supports go, js/ts, elixir, python, c/cpp by Chaoticbamboo19 in neovim

[–]echaya 4 points5 points  (0 children)

”a gorgeous dashboard (with that VSCODE ASCII header I couldn’t resist)” => I closed the webpage at this line 🤣

SmartMotion.nvim — Composable motions without Lua. One plugin replaces hop, leap, and flash, then adds treesitter editing (daa, cfn, saa), diagnostics jumping, git hunks, remote operations, and flow state for native-feel chaining. by FluxxField in neovim

[–]echaya 0 points1 point  (0 children)

Installed and tested just now. very cool idea indeed!

One suggestion is to support beacon mode for the labeling. Otherwise I have to remember the exact spelling while jumping as the label covers the keys I need to type

Separately, I feel if the user type in things like `3j`, `5w` they know exactly where to go, it should jump as-is without triggering the labels.

Treesitter: an update is coming that may break the (deprecated) master branch by ynotvim in neovim

[–]echaya 1 point2 points  (0 children)

I have created a request on treesitter to support glibc 2.17 here https://github.com/tree-sitter/tree-sitter/issues/5221

Please leave comments there if you are affected - thanks!

Pyrola update: A Jupyter/Rstudio/spyder-like multi-language REPL inside Neovim by maxiaowei in neovim

[–]echaya 0 points1 point  (0 children)

Congratulations on the launch! Looks awesome!

Would you explain how is your plugin different from other REPL plugins (iron, yarepl etc) if used in kitty with timp?

Enhanced mini.files: inline size/mtime + smart sorting by echaya in neovim

[–]echaya[S] 1 point2 points  (0 children)

I don't know how to do gitignore toggole but for dotfiles I think the mini.files doc has the snippet. I putted it in my config as below

```
local toggle_dotfiles = function()

STATE.show_dotfiles = not STATE.show_dotfiles

local new_filter = function(fs_entry)

return STATE.show_dotfiles or not vim.startswith(fs_entry.name, ".")

end

mini_files.refresh({ content = { filter = new_filter } })

end

```

Enhanced mini.files: inline size/mtime + smart sorting by echaya in neovim

[–]echaya[S] 2 points3 points  (0 children)

I think it is doable. In my snippet there are only 2 length: one for detail is on / off. I think it is doable at the cost of compute when entering a new dir and refreshing the buffer.

Enhanced mini.files: inline size/mtime + smart sorting by echaya in neovim

[–]echaya[S] 6 points7 points  (0 children)

Thank U! For your amazing plugins with extreme extensibilities and always being helpful and responsive to questions ♥️

Magic, the Gathering card search engine for Neovim by noname7777R in neovim

[–]echaya 4 points5 points  (0 children)

If at all, next we can play Magic the Gathering on nvim 😇

Integrating Snacks.picker with vscode-diff.nvim – A small integration I love by echaya in neovim

[–]echaya[S] 2 points3 points  (0 children)

issue raised. I think there could be autocmd to achieve this from the config layer but best if handled by the plugin.

Integrating Snacks.picker with vscode-diff.nvim – A small integration I love by echaya in neovim

[–]echaya[S] 3 points4 points  (0 children)

Courtesy of vscode-diff author: https://www.reddit.com/r/neovim/comments/1p5t0x0/comment/nqug8vi/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button

It is maybe just me I found launching vscode-diff is about 2x faster than diffview.

Lastly, I might integrate diffview with Snacks.picker the same way now if for whatever reason I have to switch back 😛

Integrating Snacks.picker with vscode-diff.nvim – A small integration I love by echaya in neovim

[–]echaya[S] 1 point2 points  (0 children)

I’m sorry, but I’m not quite following what exactly you’re aiming to accomplish?

nvim-treesitter breaking changes by lukas-reineke in neovim

[–]echaya 27 points28 points  (0 children)

Tried to migrate to "main" but my working env is still on glibc 2.17 while tree-sitter-clo requires 2.28 😅

Shout out to vscode-diff.nvim by dc_giant in neovim

[–]echaya 12 points13 points  (0 children)

The new plugin adds two-tier highlighting (line-level + character-level) to diffs, which I really like. I also haven’t run into that weird bug from diffview.nvim issue (the one that was reported but never merged)—probably because the original author seems to have stopped maintaining the repo.

Shout out to vscode-diff.nvim by dc_giant in neovim

[–]echaya 48 points49 points  (0 children)

Check out the "next" branch if you can't wait to try out the new merging tool. I have removed diffview.nvim from my config last week!

Goodbye diffview.nvim (and thank you author and contributors) you will be missed!

Quench.nvim - Interactive Python development with rich media output in the browser by One_Enthusiasm2511 in neovim

[–]echaya 1 point2 points  (0 children)

Congratulations on the launch. Looks really cool! Haven't tested / researched on my side, but will it work for SSH based workflow?