Sending results to the quickfix list with ctrl--q is such a hack! thanks for sharing!
@tkingless15 сағат бұрын
ctrl--q is sending all, if only want to select a few, use alt-q use 'tab' to select a few interested entries before alt-q sending to qfixlist it is useful too, refer to '?' in selection mode
@callmetyler14 сағат бұрын
I use this one almost everyday. Very convenient
@camilocoelho7097Сағат бұрын
I am giving nvim another chance for the nth time. This is one of the things I really want to understand.
@lorenzotecchia20 сағат бұрын
stayed up all night for this
@teej_dv20 сағат бұрын
Haha sorry, I'll try and have the next one done earlier in the day 😉
@dennistanui708520 сағат бұрын
I thought your son heard you say "live multigrep" and they thought it was a curse word and was like "heeey, (you can't say that)"
@Kane012318 сағат бұрын
Who is your daddy and what does he do? My dad writes code and grips craps... vim btw
@xcuu4 сағат бұрын
Can’t wait to watch the video explaining harpoon :)
@hackerware_sh20 сағат бұрын
Really insightfull! I found the docs for creating custom telescope pickers a bit hard to digest, but this video clarifies a lot of stuff! Thanks!
@jorgeimo20 сағат бұрын
This is just what I needed, thanks! Looking forward to more telescope videos, I’m writing a picker that fetches data to display in the picker and I was using octo as reference , but I don’t think it uses what you showed here, now I have a new thing to explore 👀
@FlaskTest20 сағат бұрын
thank you for continuing the series
@Theosibo4 сағат бұрын
Me sitting here waiting on this mornings video with my coffee, just soaking in the advanced telescope goodness a second day in a row.
@brattonross19 сағат бұрын
great video as always, maybe I will write my own picker over the holidays for fun :) speaking of the quickfix list, in the past i've found it handy to search in telescope, hit C-q, and then use :cdo to run a command against all of the results
@imrongamidli519021 сағат бұрын
Nice, thanks for coming back 😅
@linuxshawty12 сағат бұрын
this kind of content exactly is making me learn nvim so fast tysm
@linuxshawty12 сағат бұрын
i started vim a week ago but tj makes it so lighttttt
@numptywithacamera11 сағат бұрын
Very cool really liking this series TJ
@theIbraDev3 сағат бұрын
I have been using live grep alot, and i have been putting all the results in a quickfix, and then opened that quicklist back into telescope again to filter out filetypes lul. This is a way better way to do it thanks
@emersonbarros681520 сағат бұрын
4:16 that was cute bro
@Kane012318 сағат бұрын
When he rebels as a teenager he's going to start using Emacs.
@ronniemagatti33422 сағат бұрын
Now that's good content! Thanks for sharing!
@lpanebr9 сағат бұрын
13:46 that was very good! You should fake missing stuff more often so we think you're actually human.
@AlfioCardillo-pk2ko11 сағат бұрын
Wow! What a great video, this is truly amazing! I would like to ask if someone know if there was a way to remember the previous input we gave to telescope. I would like to implement Intellij multi grep picker, where actually when you open it, the second part (the one that matches the file name) is set already by default to the one used before, while the first part is empty so that you can search for something else.
@Flonkation20 сағат бұрын
Yeah , actually been wanting this finxhionality I've noticed, thx
@m4saurabh21 сағат бұрын
Wake at 4:00 in the night for this.
@moussaadem793320 сағат бұрын
he is saying he wakes up at 4am or something
@m4saurabh20 сағат бұрын
Nah, I sleep after I see the sun rays, at least that's actually less insane than waking up at 4AM, I wake after afternoon.
@isthisajokemate6 сағат бұрын
Thank you TJ
@fionnbracken19 сағат бұрын
There's a great instructive video on the youtube channel Developer Voices where he creates a telescope picker for viewing docker images, and shows how to step by step.
@willernst4 сағат бұрын
Whoa, shit got real in this one!
@zeocamo12 сағат бұрын
TJ you should show have to make a user command for the lua function, so the command can be mapped outside of the "plugin", and show they can call it? maybe :D
@terxxxz13 сағат бұрын
I guess If I haven't found this channel I would still be using vs code.
@MontlicTitagres14 сағат бұрын
This is magic!
@한국어의이름이라면강2 сағат бұрын
9:30 how to add @hint ?(i dont know what is called)
@hyperthreaded16 сағат бұрын
Can you have it store a per-picker last used search string and search string history, and automatically pre-fill the search field with the last used string and have some way of navigating through the history? Great series btw, much appreciated!
@arnoeagleeyes7 сағат бұрын
Great video. Tx ! One question though. Can you explain the table.insert() ? I know that it inserts a line in a table, but which table ? What does it reference ?
@ArdentInfoSec4 сағат бұрын
Unless I miss understood, it creates a table of flags and arguments to pass to the ripgrep (rg) command in order.
@arnoeagleeyes3 сағат бұрын
@@ArdentInfoSec Oh .. I must have been sleeping. The first argument is the table to insert into right ? The rg arguments part i got. tx.
@jesusrag11 сағат бұрын
that's fire man
@DEVDerr10 сағат бұрын
Is it possible maybe to change filtering in multigrep from double spaces to pipe "|" ? It's common pattern in templating languages and thought it could match better for me :D
@taetaebahohiningamo18 сағат бұрын
buy a terminal coffee using telescope 😂
@bigmiraclewhips15 сағат бұрын
very useful function
@prashlovessamosa18 сағат бұрын
Can you please release all videos all at once 😅
@sh_zik48 минут бұрын
Commit and push your changes please
@Moelkenzi21 сағат бұрын
Thnkz Tj 😊
@romankovalov90157 сағат бұрын
makes TWO videos about his plugin xD
@LorenzoBettini8 сағат бұрын
Concerning the use of joinpath, I get a Lua warning: └╴ Cannot assign `string|string[]` to parameter `string`. - `string[]` cannot match `string?` - Type `string[]` cannot match `nil` - Type `string[]` cannot match `string` Lua Diagnostics. (param-type-mismatch) [24, 31] Why isn't the warning also in the video, I'm wondering?
@sp3ctum6 сағат бұрын
It might be that the nvim version is different. The types are bundled with nvim, I think.
@marcobuess19 сағат бұрын
By no means would I question my nvim overlord but allow me to ask if fzf={} is really required besides load_extension. Healthcheck shows it as OK with load_extension alone. Can I somehow confirm it's working as expected? ❤
@zeocamo12 сағат бұрын
Tj easy now, you are jump around and adding :find() without saying why at the time, we want people to make more plugins for Telescope, so take some air and easy, good video tho
@lickflames21 минут бұрын
how many takes per video do you do? :)
@abombfuenmayor17 сағат бұрын
Thanks!
@examinethose19 сағат бұрын
giving us the juice
@malgahfattahillahi838018 сағат бұрын
hell yeah
@shateq21 сағат бұрын
Clutch
@NicolasJoye20 сағат бұрын
How do I buy you coffee...🎉
@ForeverZer019 сағат бұрын
TJ prefers fresh goat's milk.
@Kane012318 сағат бұрын
If you meant, how do i buy your coffee - thats basically self exclusion. If you meant you want to buy Teej some coffee, I'm pretty sure he has enough access to caffiene ;)