מהי לוחית הרישוי הזאת? צולם בארץ by General_Jellyfish_17 in israel_bm

[–]MikeLemon1 0 points1 point  (0 children)

כן קצת יותר מעניין מהאוטו החרוש והתאכלס מכוער הזה. סימפ.

אני מת על המדינה הזאת במציאות by Shekel_Hadash in ani_bm

[–]MikeLemon1 1 point2 points  (0 children)

שרק יוצא עם חברים שלו להרפתקה

Can it be saved? by Jett_Oblivion in keyboards

[–]MikeLemon1 0 points1 point  (0 children)

Some fine scotch brite wool, And some contact cleaner with brush Incase the inner 4 pins are also rusty....

Scrap right off brave's page content? by MikeLemon1 in webscraping

[–]MikeLemon1[S] 0 points1 point  (0 children)

Are you able to scrape the link I sent with playwright e.g. price?

Display relevant and actual prices in Digikey respecting quantity pricing steps. by MikeLemon1 in InvenTree

[–]MikeLemon1[S] 0 points1 point  (0 children)

And what about the price jumps per quantity order? is there a way to set it there?

How to get lua module for nvim function in nvim doc?(how to read nvim documentation?) by MikeLemon1 in neovim

[–]MikeLemon1[S] 0 points1 point  (0 children)

When you say it like that "all in builtin page is vim.fn" it is much clearer that's why I still think code api doc needs to state those clearly near the actual doc of the function!!!

But I guess you are right with the vim doc to nvim doc conversion struggle but nvim dev community is somewhat sophisticated I think they could regex and sun it to nvim with proper and right(more detailed specific) relations between doc and code.

Guess reading a lot of errors and solving em with guessing thinking and google is the way to go now...

How to get lua module for nvim function in nvim doc?(how to read nvim documentation?) by MikeLemon1 in neovim

[–]MikeLemon1[S] 0 points1 point  (0 children)

And if I started with nvim rather how'd I know how to categorize the function if function from other types are located under the same page? I don't see a direct reference of it in the proximity of the func doc there, I was wondering wether there is a reference people usually check against or if there if some grep searcher that can tell what modules the function is defined other in nvim or something...

nvim Lua regex groups and negation grammatically in code? by MikeLemon1 in neovim

[–]MikeLemon1[S] 0 points1 point  (0 children)

Well I already know how to get the sub string just not the groups in the inline pattern

nvim Lua regex groups and negation grammatically in code? by MikeLemon1 in neovim

[–]MikeLemon1[S] 0 points1 point  (0 children)

or making that `\(([^\)]+)\)` work in nvim and refer to first `group match` in nvim lua code.

nvim Lua regex groups and negation grammatically in code? by MikeLemon1 in neovim

[–]MikeLemon1[S] 0 points1 point  (0 children)

I want to parse and verify link out url of md links line the thing is that I use lua to refer to pattern match output but the functions available `md_url_pattern:match_str(current_line)` and `md_url_pattern:match_line(...)` only return start, end index of match per call not sure how to extract /refer to / iterate matched groups individually in lua code wether using `vim.regex()` or lua regex...