That was probably the most succinct tutorial/run through I have watch on RUclips, I now need to look at your back catalogue and see what other wonders you have 😊
That was absolutely epic. I wish I could have seen this video much much earlier in my neovim life. I remember trying to figure out how to do this sort of thing for when I was picking processes to have DAP attach to. It was doable, but difficult, because I don't know what I don't know. Having this incredible, clear demonstration of how to to make this work will help so much when I can't remember how to do it yet again. Haha. Great work, please do more this was chefs kiss.
Been using neovim for a couple of years and vim a lot longer, but I gotta say watching the way you use it for programming is a learning experience. I like the way you work!
Mark Holcomb from Periphery taught me guitar and now he’s teaching me neovim. Just kidding! I’ve wanted this exact tutorial for years in neovim and it couldn’t be more informative! Thank you!
great video.. I've been using neovim for a long time, but never felt like making my own plugins until now.. Please do more neovim videos.. this is EPIC!!
This makes me wanna try to make a devcontainer plugin. I know there are some out there but I wanna give it a try nonetheless. Thank you for this wonderful inspiration!
This video cleared up the mystery of developing a Telescope extension for me and got me really excited about all of the extensions I can build. Thank you so much for your clear explanation, for starting simple and progressively making it more and more powerful!
I'm still a noob, but I enjoyed the thought process and general pacing of the whole video. It doesnt have to be "tutorial" either or Neovim specially, initially watched your videos from the Odin interview with Ginger Bill.
That's so so cool!!!! Really wished that neoview would be more integrated with game dev flows tho - it's such a pleasure as an text editor, but without the additional tooling involved it's quite difficult to make it usable to day to day game development...
One thing I am wondering about. The command returns a number of items, yet in the the entry maker you deal with the entries individually. Where is the splitting happening? Absolutely fantastic and so much fun. Thanks for taking us along on the ride and to make it so practical. Can't wait for the next installment.
Looking at your debug output again, it seems that you JSON is JSON lines with one JSON per line, so probably telescope is splitting by line. This is also consistent with your yes, no, maybe example before.
This is a huge motivator to start trying to write a telescope plugin, thank you! I'm struggling to figure out how command_generator works, I'm trying to construct my json payloads with a shell for loop, and it doesn't like it :). Also I see in your sample code you use finders.new_dynamic instead of finders.new_async_job, so I'm trying to find the docs on how to use all of these.
I have to admit reading some of these comments back, I'm thinking they lack a lot of experience. I wonder what kind of superlatives these individuals would dish out on some of TJs videos (creator of neovim). LOL. Jokes aside, definitely a great educational video for anyone new to Lua and extending neovim and you deserve big kudos for that!
Cooool~ How about building container, pulling image, running command in contain and so on. The thing that bothers me the most is how to edit in container with full neovim ability such as lsp, dap etc. I use -v to mount the directory in host and use the neovim on the host but can no use the lsp like vscode. Is there better solution for that? Thank you in advance!
Ah, great question. So I started off with this developer's guide: github.com/nvim-telescope/telescope.nvim/blob/master/developers.md ...and then the rest I picked up from reading source code.
@@DeveloperVoices absolutely lovely content. Very composed outlook to problem solving. I'd highly encourage you to create some tutorial videos like this every now and then. You genuinely got a knack for elegant spoonfeeding to novice folks.
I really like both of them. Emacs (with evil-mode) was my main editor for years, and I think either is a great choice. I find Emacs Lisp to be more fun to write than Lua, because the interactive development experience is absolutely world class. Lua's still good, it's just that elisp is astonishingly good. But some of Emacs' UI experience is need of a refresh, which gives Neovim a day-to-day edge. The Neovim team have done a great job of pulling the terminal into the 21st century. :-)
I really like these ~20min coding videos! Would love to see more like this. Also really enjoyed following along with your Purescript / Quickcheck video - ruclips.net/video/4bpc8NpNHRc/видео.html
awesome! just awesome! you are my man! Unfortunately, i have no idea how to make this work besides running "source". when i startup my nvim, i get a bunch of errors like: [lspconfig] Cannot access configuration for lua_ls. Ensure this server is listed in `server_configurations.md` or added as a custom server.
made it work to load the plugin via packer. now i have to figure out, how to setup a keybinding and stuff. Oh man, i am new to neovim but loving it :) thanks!
That was probably the most succinct tutorial/run through I have watch on RUclips, I now need to look at your back catalogue and see what other wonders you have 😊
kinda speechless over how good this video is, I hope I can explain something this clearly someday
That was absolutely epic. I wish I could have seen this video much much earlier in my neovim life. I remember trying to figure out how to do this sort of thing for when I was picking processes to have DAP attach to. It was doable, but difficult, because I don't know what I don't know. Having this incredible, clear demonstration of how to to make this work will help so much when I can't remember how to do it yet again. Haha. Great work, please do more this was chefs kiss.
Thanks! I wish I could have posted it when you needed it, because that would mean I'd discovered Neovim sooner too. 😁
This is the greatest illustration I've ever seen of how powerful Neovim, Lua and Telescope truly are
Awesome video. More neovim stuff please
This is the epitome of casual brilliance
I really appreciate how you showed the entire intend process rather than skipping it in attempt to save time. Excellent video thank you for making it!
Amazing, this could just be the most useful neovim/lua video I've ever seen. Keep it up!
Using neovim/telescope for years.. but this just blew my mind. Awesome video.
That was amazing pedagogy. You're incredibly clear and engaging. Kudos! 😀
I had no idea it was so simple to extend and create telescope modules. Thanks for this!
Glad I could help!
Incredible! 👏👏👏
Been using neovim for a couple of years and vim a lot longer, but I gotta say watching the way you use it for programming is a learning experience. I like the way you work!
this man went next level... nvim telescope instead of the cli fzf... je suis intrigued
Wow Kris! This was my intro to Neovim plugin development and I feel ready to make some useful things!
It was great to see your workflow here
Mark Holcomb from Periphery taught me guitar and now he’s teaching me neovim.
Just kidding!
I’ve wanted this exact tutorial for years in neovim and it couldn’t be more informative! Thank you!
great video.. I've been using neovim for a long time, but never felt like making my own plugins until now.. Please do more neovim videos.. this is EPIC!!
Maybe I've not been subbed long enough, but this is the first tutorial/walthrough I've seen from you. I'd love to see some other topics!
Neglected the main purpose if my iriginal comment, which was to say: I love your style/qpproach in these more tutorial-centric videoa!
Glad you like them! Keep an eye on this playlist - I'll be adding more there as they come: ruclips.net/p/PLuiPju9KQBnatff3GerbYpqPijpDRJp9p 🙂
That was awesome thanks 😊
This makes me wanna try to make a devcontainer plugin. I know there are some out there but I wanna give it a try nonetheless. Thank you for this wonderful inspiration!
Content humanity deserves. ❤
This is the best "tutorial" on how to start writing plugins to nvim I have seen. THANK YOU so much! Please do more
I'm not a neovim person but it's very very nice seeing Lua actually being USED for something.
This video cleared up the mystery of developing a Telescope extension for me and got me really excited about all of the extensions I can build. Thank you so much for your clear explanation, for starting simple and progressively making it more and more powerful!
This is hidden gem. Thank you so much!
Re-watched this recently. So good!
Wow! ❤ that's so inspiring! I can't wait to finish my breakfast, jump into nvim and write some telescope plugins 🚀🙌
awesome, I loved how well did you explained everything, all the things you need to create a telescope extension, step by step.
Brilliant. I’ve been using neovim and docker for years. You just created a super convenient entry point for me to build on.
Educational, informative, and useful - all at the same time. Thank you!
Very well explained and great pacing!
This is an extremely high quality tutorial type of presentation!
Crystal clear!
Love this video. Just made my very first telescope plugin. Thank you for such amazing contents.
I love these videos
I'm still a noob, but I enjoyed the thought process and general pacing of the whole video.
It doesnt have to be "tutorial" either or Neovim specially, initially watched your videos from the Odin interview with Ginger Bill.
That's so so cool!!!! Really wished that neoview would be more integrated with game dev flows tho - it's such a pleasure as an text editor, but without the additional tooling involved it's quite difficult to make it usable to day to day game development...
One thing I am wondering about. The command returns a number of items, yet in the the entry maker you deal with the entries individually. Where is the splitting happening?
Absolutely fantastic and so much fun. Thanks for taking us along on the ride and to make it so practical. Can't wait for the next installment.
That'll be Telescope. Somewhere in the telescope codebase there'll be a for loop working its magic. 🙂
Glad you enjoyed it! Stay tuned for more. 😉
Looking at your debug output again, it seems that you JSON is JSON lines with one JSON per line, so probably telescope is splitting by line. This is also consistent with your yes, no, maybe example before.
This is a really great video!
Great illustration. want to learn more about the how buffer/windows/tab work in neovim
This was extremely helpful and insightful, thank you sir! You got yourself a new sub can't wait for more.
This was great to watch. Learned so much, thanks 😊
Brilliant. Thank you.
Sick video Kris
This is a huge motivator to start trying to write a telescope plugin, thank you! I'm struggling to figure out how command_generator works, I'm trying to construct my json payloads with a shell for loop, and it doesn't like it :). Also I see in your sample code you use finders.new_dynamic instead of finders.new_async_job, so I'm trying to find the docs on how to use all of these.
This a great video! Learned a lot from this, also a very useful module since I use docker ..
amazing video! highly educational and very well explained!! Thanks a lot for these sort of videos
Your content is *chef's kiss*
Welcome to the club! ❤
This made my day! Thank you so much!
Simply amazing 👍
I have to admit reading some of these comments back, I'm thinking they lack a lot of experience. I wonder what kind of superlatives these individuals would dish out on some of TJs videos (creator of neovim). LOL.
Jokes aside, definitely a great educational video for anyone new to Lua and extending neovim and you deserve big kudos for that!
Beautiful. Thoroughly enjoyed the video. I see you have Kafka telescope extension. Do you mind making a video on that?
One of us. One of us. One of us.
that was a gold nugget there
That was very interesting and engaging!
Thank you!
Stunned.
Insane tutorial. Insta-subscribed.
Thank you, it was great!
Incredible!
legendary!
Very well explained! But now I'll want to create telescope plugin for pretty much everything..
Ha, me too. 😅
this was very insteresting
Nice!
Cooool~ How about building container, pulling image, running command in contain and so on. The thing that bothers me the most is how to edit in container with full neovim ability such as lsp, dap etc. I use -v to mount the directory in host and use the neovim on the host but can no use the lsp like vscode. Is there better solution for that? Thank you in advance!
Very nice, but the thing i'm missing a bit is how you found the commands .. did you ask the community, TJ or searched the readme's / docs?
Ah, great question. So I started off with this developer's guide: github.com/nvim-telescope/telescope.nvim/blob/master/developers.md
...and then the rest I picked up from reading source code.
How is there not more likes?
nice vid!
This guy looks like he has a degree in witchcraft. Me likey! 🧙
And just 40 seconds in, I heard witchcraft word for telescope highlight.
If I could get a degree in Witchcraft, I’d be all over that. Until then, I’ll have to content myself with DnD. 😅
@@DeveloperVoices absolutely lovely content. Very composed outlook to problem solving.
I'd highly encourage you to create some tutorial videos like this every now and then. You genuinely got a knack for elegant spoonfeeding to novice folks.
I switched it to show me the containers instead of images.
i would like to learn more about lua and neovim
Which plugin did you use to jump around by typing letters? Was it hop?
Funnily enough, I only found out about hop last night. So in the video it was easymotion, but I think it's going to be hop going forward. :-)
@@DeveloperVoices there's also leap.nvim, in case you want a different flavor
How do you feel about neovim vs eMacs?
I really like both of them. Emacs (with evil-mode) was my main editor for years, and I think either is a great choice.
I find Emacs Lisp to be more fun to write than Lua, because the interactive development experience is absolutely world class. Lua's still good, it's just that elisp is astonishingly good.
But some of Emacs' UI experience is need of a refresh, which gives Neovim a day-to-day edge. The Neovim team have done a great job of pulling the terminal into the 21st century. :-)
I think I’m gonna do the same for k8s
hmm is this via terminal or with gui app?
Terminal. I'm using Kitty: sw.kovidgoyal.net/kitty/
thanks, I'm familiar :) @@DeveloperVoices
Emacs it is really faster with this task i just quit telescope that sometimes miss things out
I really like these ~20min coding videos! Would love to see more like this. Also really enjoyed following along with your Purescript / Quickcheck video - ruclips.net/video/4bpc8NpNHRc/видео.html
awesome! just awesome! you are my man! Unfortunately, i have no idea how to make this work besides running "source". when i startup my nvim, i get a bunch of errors like: [lspconfig] Cannot access configuration for lua_ls. Ensure this server is listed in `server_configurations.md` or added as a custom server.
Sounds like you need to install `lua-language-server`. On OSX that's `brew install lua-language-server`, but YMMV. :-)
made it work to load the plugin via packer. now i have to figure out, how to setup a keybinding and stuff. Oh man, i am new to neovim but loving it :) thanks!