Vim: Tutorial on Editing, Navigation, and File Management (2018)

How to efficiently edit, navigate, and manage files in Vim! This talk will provide a basic overview on how you can begin to start using Vim like a pro 😎 without any plugins involved!
This is a talk I gave on using Vim effectively designed for users of all experience levels. Unlike most talks on the same topic, this talk has been made to be as interactive and visual as possible to allow for a more seamless learning process.
Every topic and demo is outlined below:
0:00 Intro
3:29 Why Vim?
7:00 Demo 1 - Impractical Vim Usage
9:10 Operators, Text Objects, Motions
12:44 Demo 2 - Practical Vim Usage with Operators, Text Objects, Motions
14:52 Advanced Navigation
15:55 Advanced Navigation - Scrolling and Other Motions
16:48 Advanced Navigation - Editing
17:36 Advanced Navigation - Searching
18:04 Advanced Navigation - Marks
18:41 Advanced Navigation - Tags
19:15 Advanced Navigation - Jumplist / Changelist
20:22 Demo 3 - Practical Vim Usage with Advanced Navigation
29:32 Project Management
30:50 Project Management - Buffers
32:28 Project Management - Windows
33:02 Project Management - Tabs
34:06 Demo 4 - Practical Vim Usage with Project Management (Vim as an IDE)
43:36 Clipboard Synchronization
48:17 Hotkeys + Misc.
50:05 Screen Multiplexing (tmux)
51:27 Answer to Important Question
52:14 Brief Touch on Abduco + Dvtm as a Tmux Alternative
52:51 Questions
Contact Me:
/ leerenchang
/ leerenchang
/ leeren
Subscribe: / leerenchang

Пікірлер: 408

  • @leeren_
    @leeren_3 жыл бұрын

    Hi everyone - remember to visit my community channel to give me suggestions on new videos to do and to stay up to date with everything that i'm working on: kzread.infocommunity

  • @inspirated
    @inspirated4 жыл бұрын

    I have been a vim user for more than a decade and a half and I was still blown away by this talk. Very organized, visual. From now on, this is my goto recommendation for all the newcomers to vim.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you so much! New one shortly

  • @ackmandesu8538
    @ackmandesu85385 жыл бұрын

    One of the best Vim talks I've seen. Lots of content, lots of new things. That part with the arguments, splits, quickfix, diffs... I'll try to practice it and implement it into my workflow.

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thank you so much!

  • @ultimas20

    @ultimas20

    5 жыл бұрын

    DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU DESU

  • @michajurczuk6265

    @michajurczuk6265

    5 жыл бұрын

    @@ultimas20 ha ha ha

  • @francescominnocci

    @francescominnocci

    4 жыл бұрын

    @AckmanDESU I agree! ~written with wasavi chrome vim editor

  • @Soulthym
    @Soulthym5 жыл бұрын

    I'm only 18minutes in the talk and I already have enough information to improve my vim skills significantly and have learned ~20 new things! That's just awesome, I can't wait to put it all these into action!

  • @leeren_

    @leeren_

    5 жыл бұрын

    That's great to hear! Have fun!

  • @dungkieu3669

    @dungkieu3669

    4 жыл бұрын

    @@leeren_ Could you please also share Slide for this talk? Thank you very much!

  • @leeren_
    @leeren_4 жыл бұрын

    Hi all, I've started to prepare for a talk on OAuth that will ideally be as visual, hands-on, and comprehensive as this one. I want to thank everyone for the wonderful praise and feedback this video received. But more importantly, what other software-related topics would you want to be covered? Be as general or as specific as you'd like. Let me know by replying to this comment!

  • @DannyPhantumm

    @DannyPhantumm

    4 жыл бұрын

    Hi Leeren, this was a great talk. I've used vim for years and have never heard of many of the things you've mentioned here. Is there anyway you could post the slides? Also, for your question.. a software-related topic I'd be interested in is parallelization. Which types of programs are good candidates for parallelization? How would one go about parallelizing code with either python, javascript, etc. (whichever language you're most comfortable in)?

  • @leeren_

    @leeren_

    4 жыл бұрын

    ​@@DannyPhantumm​ Apologies but the slides are no longer with me. My next Vim talk will definitely include them. Parallelization and multithreading is a great topic. I'll definitely put that down for the future. Exploring differences between Go, Javascript, and Python and the differences between how they tackle concurrency and parallelism is something that needs way more coverage. E.g. for concurrency, how does Node.js' Event Loop (based on the Reactor pattern) differ from Go's goroutines (based on Communicating Sequential Processes) or Python's greenlets? And under what context is parallelism beneficial, how do you use it effectively, and to what degree can it be useful (i.e. Ahmdal's law)? Thanks for the excellent suggestion. As a backend focused person, these are all problems I wish there were more visual resources for. I'll give it a shot in the future.

  • @asdfkjhlk34

    @asdfkjhlk34

    4 жыл бұрын

    All i have to say is yes

  • @morphomorph4923

    @morphomorph4923

    4 жыл бұрын

    I would really like a talk in your style about git. Before I saw this talk I was using Vim totally wrong, and now I feel like I'm doing the same thing with git. Might be a bit too entry-level of a subject though, idk.

  • @leeren_

    @leeren_

    3 жыл бұрын

    @@morphomorph4923 What do you think you're doing wrong with git?

  • @sightf2
    @sightf25 жыл бұрын

    This is the video people need to see after vimtutor. Makes the 'why' of using vim much more clear.

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thank you!

  • @aidancollins1591
    @aidancollins15914 жыл бұрын

    Incredible! It's always entertaining to see Vim functionality that I was unaware of, it's a gift that keeps on giving! Good job Leeren

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you Aidan!

  • @videogamesare1
    @videogamesare15 жыл бұрын

    Halfway thorough and I've found this immensely, immensely helpful....thank you dawg

  • @leeren_

    @leeren_

    5 жыл бұрын

    No problem. Glad it helped!

  • @jettlaggg
    @jettlaggg2 жыл бұрын

    I'm so glad this popped out from my feed and I cared enough to click it! Having learned the basics from vimtutor this year and have transitioned to vim from vscode, I thought I already knew enough. This was so inspiring in many ways and made me want to trim down and rethink again some of the plugins I've installed haha. Thank you so much!

  • @d3javu1978
    @d3javu19782 жыл бұрын

    ive been using vim for 7 years, hands down this video is so awesome! thanks for all the time savings!

  • @paterson.
    @paterson. Жыл бұрын

    That was so cool. I've been looking for exactly something like this, a demo video of using Vim in an actual (well not really actual) project, and couldn't find one. I'm glad I found it finally! Thank you so much Leeren!

  • @chromosoulmagic
    @chromosoulmagic4 жыл бұрын

    This is the vim workflow video. My brain has been begging for it. Great job.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks - keep that brain begging!

  • @jasonxoc
    @jasonxoc5 жыл бұрын

    Just when I thought I was getting good with vim I see this dude and realize why I love vim... no bottom of the pool. I've never thought this before but I just want to watch you code for a day.

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thanks! Stay tuned!

  • @saintbenedictscholacantorum
    @saintbenedictscholacantorum4 жыл бұрын

    Fantastic, well-organized and engaging talk, that taught me more vim features than any other tutorial of similar length, and inspired me to actually go out and use them.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you so much!

  • @SuperMegaDima
    @SuperMegaDima4 жыл бұрын

    This one talk answered huge amount of my open questions about vim. Thank you so much!

  • @leeren_

    @leeren_

    3 жыл бұрын

    I wonder if other talks helped you as well! Let me know!

  • @Naton
    @Naton5 жыл бұрын

    this vim talk is insane. it's crazy

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thank you!

  • @giftedoneaz
    @giftedoneaz5 жыл бұрын

    Amazing talk. I’ve been using Vim on and off for 15 years and learned a lot. Need to watch it a second time and take notes this time.

  • @leeren_

    @leeren_

    5 жыл бұрын

    That's great to hear!

  • @travisireland7276
    @travisireland72762 жыл бұрын

    I'm trying to build a zettelkasten based around Vim and Ctags. Going back and trying to understand Vim a little more, this is still essentially the very best tutorial after Vimtutor. Super grateful to you for making these Vim videos.

  • @leeren_

    @leeren_

    2 жыл бұрын

    Thank you! Hope that goes well!

  • @PreRenderedRealities
    @PreRenderedRealities3 жыл бұрын

    This is one of the best... maybe THE best Vim vid I've seen. Huge thanks for this.

  • @hudatolah
    @hudatolah5 жыл бұрын

    Wow! Impressive. I've been using vi over 20 years and I still learned a lot from your presentation. Ping me if you come to Austin one day. I'll buy you lunch!

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thanks! I'll keep that offer in mind if I ever come.

  • @seungjinkim8860
    @seungjinkim88604 жыл бұрын

    Best video I've seen about vim. Looking forward to more content in the future. Thanks for the timestamps.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you man! Content will be coming out soon! ;)

  • @RalphKoettlitz
    @RalphKoettlitz3 жыл бұрын

    This is a condensed, concept orientated and practical tutorial. Thank you.

  • @leeren_

    @leeren_

    2 жыл бұрын

    Thank you for watching!

  • @axelsalazar2824
    @axelsalazar2824 Жыл бұрын

    I thought I was an intermediate user but this talk have taught me that I still have to learn a lot of things, great talk!

  • @sethbrown1763
    @sethbrown176311 ай бұрын

    I loved the "But that's it, thanks!" Cleanest end ever :)

  • @jbyork
    @jbyork4 жыл бұрын

    I've used vim for many, many years and I learned a ton of stuff! Thanks for posting this!

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks you for watching!

  • @goonman1255
    @goonman12553 жыл бұрын

    Best vim talk I've ever seen, killing it dude!

  • @leeren_

    @leeren_

    3 жыл бұрын

    Thanks man!

  • @RogerBarraud
    @RogerBarraud4 жыл бұрын

    I like the way Leeren gives a good and humble motivation up front. As a probably-not-really-RockStar-programmer, I appreciate all the help I can get :-)

  • @leeren_

    @leeren_

    4 жыл бұрын

    Everyone starts with humble beginnings!

  • @travisireland8591
    @travisireland859111 ай бұрын

    This is great because now I know what to look for in the documentation. This talk is going to take me through my first web development project. Thank you for this.

  • @MauricePoos
    @MauricePoos4 жыл бұрын

    This presentation should be marked read only and mandatory, never to be removed by anyone and to be viewed by everyone even thinking about touching a computer beyond watching KZread. Thank you!

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you for the kind words!

  • @arthurchia2828
    @arthurchia28284 жыл бұрын

    Very good talk. This video actually did widen my knowledge on using Vim. Worth to spend a hour to finish this video.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you for the support!

  • @juliejones8785
    @juliejones87854 жыл бұрын

    Good information. I've been using vi for more than 30 years and I still learned something. A side note: vi is pronounced VEE-EYE. That is how Bill Joy pronounced it when he wrote it. That also applies to all the two letter Unix commands (EE-EX, EL-ES, DEE-EF, DEE-YU, etc.)

  • @leeren_

    @leeren_

    4 жыл бұрын

    Wow, I didn't know that! Great to know.

  • @stevealdrich2472

    @stevealdrich2472

    4 жыл бұрын

    ...and then you can say , "I fly vi"

  • @musthavechannel5262
    @musthavechannel5262 Жыл бұрын

    Great talk man. Completely to the point and no unfunny self-deprecating jokes. Well done.

  • @leeren_

    @leeren_

    Жыл бұрын

    can't tell if sarcasm or not lol

  • @musthavechannel5262

    @musthavechannel5262

    Жыл бұрын

    @@leeren_ Nooo, really meant it. Seriously great talk.

  • @lpanebr
    @lpanebr4 жыл бұрын

    This presentation is mind blowing. I just hope I live long enough to learn all this!

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you - you just gotta live long enough to watch the whole video!

  • @diegorodriguezv
    @diegorodriguezv4 жыл бұрын

    I have spent 3 days watching this with a vim window by the side and haven't been able to advance past the 20 minute mark. Every minute or so, I have to try the example he gives, open the vim help, lookup what I don't understand and find a lot of related things. I'm learning a lot. Thank you very much!

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you for the dedication in learning!

  • @notlessgrossman163
    @notlessgrossman1633 жыл бұрын

    This is awesome, i saved this video to rewatch again and again.

  • @leeren_

    @leeren_

    3 жыл бұрын

    Great to hear! I hope you learned a bunch.

  • @MyPhuckDub
    @MyPhuckDub Жыл бұрын

    People are recommending your video, good job!

  • @Geolimber
    @Geolimber4 жыл бұрын

    Great screencast. Start watching for tmux, and then realize that got a lot of vim usefull tips. Thank's for real life examples

  • @leeren_

    @leeren_

    4 жыл бұрын

    No problem, thanks!

  • @SusanAmberBruce
    @SusanAmberBruce4 жыл бұрын

    Wow, and again I say Wow! I have seen some tutorials on Utube about using Vim and I now know that they were given by people who didn't really know how to use Vim.

  • @leeren_

    @leeren_

    4 жыл бұрын

    thank you very much!

  • @funnybunnysunny
    @funnybunnysunny4 жыл бұрын

    This is an awesome video! Thank you Leeren.

  • @leeren_

    @leeren_

    3 жыл бұрын

    Would love to know how your vim learning journey has progressed!

  • @squintygreeneyes
    @squintygreeneyes5 жыл бұрын

    only 3:50mins in and already know i’m upvote this talk. vim is the ~hit

  • @leeren_

    @leeren_

    5 жыл бұрын

    Hell yea

  • @yvonh
    @yvonh4 жыл бұрын

    rarely have I been impressed by a talk but this one really does, a pity so few people in the audience, I learnt great vim stuffs, it will take me years to master

  • @leeren_

    @leeren_

    4 жыл бұрын

    It's a never-ending journey, but a fruitful one

  • @edgecrush3r
    @edgecrush3r4 жыл бұрын

    Cool.. I haved used VIM for many years, but didnt know half the stuff of this talk. Realy awesome. I will start use VIM for more usecases now. I used 'screen' as lightweight alternative to tmux. very easy to use.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks for tuning in! Yeah, I checked out both screen and tmux prior to this - definitely miss the window management capabilities they provided. But for now, going to stick with abduco (session-management only) + native-vim window management.

  • @ivanovmg
    @ivanovmg5 жыл бұрын

    Amazing talk! I learnt something new. Thank you very much! I am looking forward to seeing your further talks on vim.

  • @leerenchang811

    @leerenchang811

    5 жыл бұрын

    Thanks!

  • @leeren_

    @leeren_

    3 жыл бұрын

    How have you enjoyed future talks?

  • @ivanovmg

    @ivanovmg

    3 жыл бұрын

    @@leeren_ absolutely! Your videos on vim are very inspiring. Thank you!

  • @mohamedaminebenmabrouk
    @mohamedaminebenmabrouk5 жыл бұрын

    One of the best Vim Talks. Thank you so much ^_^

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thanks!

  • @esko1one
    @esko1one4 жыл бұрын

    here i am, thinknig im getting better with vim, only to realize i didnt even start using vim for real outside of a few keystrokes and hjkl :D good talk, an lots of information i need to dig. thanks!

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you!

  • @anuragbisht1200
    @anuragbisht1200 Жыл бұрын

    the best talk on vim !

  • @dubbeltumme
    @dubbeltumme5 жыл бұрын

    wow. so much good stuff here. I have been a sublime (with vintage/vi-navigation) user for years. But this talk seriously made me consider going all in vim. The thing that have been holding me back the most is sublimes excellent project management. And I thought the only way to get close with vim was to use tmux (which i don't want to use), your explanation of buffers/windows/jumplist changed that opinion.

  • @leeren_

    @leeren_

    5 жыл бұрын

    Yeah, I used to thing tmux was a requirement for that too! On the other hand, you still need some tool for session management. Vim's session manager is lacking in many ways.

  • @nikolica9999
    @nikolica99995 жыл бұрын

    This talk was so awesome! :) Maybe you should consider to have your own screencast series!

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thanks, I definitely am

  • @xialiangdou3229
    @xialiangdou32294 жыл бұрын

    Best Vim intro I’ve ever watched.

  • @xialiangdou3229

    @xialiangdou3229

    4 жыл бұрын

    @@leerenchang8408 I would say some basic but generally useful vim config and cool tricks about macros.

  • @leeren_

    @leeren_

    3 жыл бұрын

    Curious how you enjoyed other talks?

  • @Olivier1
    @Olivier15 жыл бұрын

    Outstanding material! Thanks for sharing!

  • @leeren_

    @leeren_

    5 жыл бұрын

    No problem, thanks for watching!

  • @lukezhang3908
    @lukezhang39084 жыл бұрын

    Super informative video. Would love to see more videos like this.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks!

  • @birdfacemd
    @birdfacemd2 жыл бұрын

    Not even 10 minutes in and I find out you can open multiple files at once. Going to read over the command options after this for sure haha

  • @yrs207
    @yrs20710 ай бұрын

    After using vim for a few years, I have to revisit this video yearly to refresh my basics in case I can pick up some cool things I always forgot to use 😅

  • @avineakduwal1518
    @avineakduwal15184 жыл бұрын

    The information is so compressed and practical. For some place I had to pause n replay. It would be great if there is articles with extra information. Thank you

  • @leeren_

    @leeren_

    4 жыл бұрын

    Yeah, the idea was to make this a super information-dense overview that could appeal to all audiences

  • @BenKoren
    @BenKoren4 жыл бұрын

    Great work here. Keep it up, Leeren.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks Ben!

  • @srinivaspithani7645
    @srinivaspithani76454 жыл бұрын

    What a talk ... thanks for sharing this great content ...

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you!

  • @rodelias9378
    @rodelias93783 жыл бұрын

    Powerful talk. Thanks man!!

  • @leeren_

    @leeren_

    3 жыл бұрын

    Thank you for watching!

  • @vegan.polymath
    @vegan.polymath Жыл бұрын

    Nice video, thank you, I like vim! First time it's difficult to use, learn the commands, but later it will be enjoyable :))

  • @Jenusx
    @Jenusx3 жыл бұрын

    Thank you for the great video. Makes Vim to be lovable.

  • @leeren_

    @leeren_

    3 жыл бұрын

    I'm really glad you enjoyed it! Thank you!

  • @kishan5481
    @kishan54814 жыл бұрын

    generally do not see videos more than 30mints thought of to see only10mins. dint know when that 10mints got over, just blown away.. One more thing i learnt vim is a ocean.

  • @leeren_

    @leeren_

    4 жыл бұрын

    thanks so much!

  • @weijiang4243
    @weijiang42434 жыл бұрын

    Best Vim presentation ever !

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you!

  • @Chris-kt9vr
    @Chris-kt9vr3 жыл бұрын

    Great talk! I learned a lot

  • @leeren_

    @leeren_

    2 жыл бұрын

    Thanks a lot!

  • @wuhanyu193
    @wuhanyu1932 жыл бұрын

    Found many many useful vim commands here, definitely should make a vim cheat sheet out of this video!

  • @sorachii8932
    @sorachii89324 жыл бұрын

    Wow. Awesome talk. Keep it up man!

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks man, I promise I will!

  • @eq716
    @eq7164 жыл бұрын

    Brilliant! Thank you a lot!

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks for watching!

  • @tractatusviii7465
    @tractatusviii74655 жыл бұрын

    Very lucid slides design. Well done, dude!

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thank you!

  • @tractatusviii7465

    @tractatusviii7465

    5 жыл бұрын

    Hey@@leeren_, what is the addon/program you use to display the last few keystrokes [in the normal mode only?🤔]?

  • @brambeer5591
    @brambeer55914 жыл бұрын

    Thanks for this content, this is a really good talk!

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you!

  • @arnoldwolfstein
    @arnoldwolfstein4 жыл бұрын

    Best vim python video out there.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks! ]m is the best

  • @oliverwolfson
    @oliverwolfson2 жыл бұрын

    Superb. Deep dive into Vim.

  • @leeren_

    @leeren_

    2 жыл бұрын

    Thank you!

  • @idhamhafidz
    @idhamhafidz4 жыл бұрын

    I've just realized, I only use like only 20% if what you know. Thank you for the video. I learn a lot

  • @leeren_

    @leeren_

    4 жыл бұрын

    That's great to hear!

  • @junuhunuproductions
    @junuhunuproductions4 жыл бұрын

    This is GOLD!!!!!

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you!

  • @homelessnerd2454
    @homelessnerd24545 жыл бұрын

    Nice talk. I pretty much do what you say beginners do so hopefully after this i will start speed things up. Speaking of that, would be fun to see how fast you actually work when not explaning stuff :)

  • @leerenchang811

    @leerenchang811

    5 жыл бұрын

    Glad this can help! Yes, maybe I'll do a screencast.

  • @leeren_

    @leeren_

    3 жыл бұрын

    Used my wrong account for replying to this. Commenting again to make sure I've responded to everyone! Are you still using Vim?

  • @sulaimangari2745
    @sulaimangari27454 жыл бұрын

    awesome talk, make me want to use vim again

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks, use it!

  • @danpedder3916
    @danpedder39164 жыл бұрын

    Awesome talk! Thanks.

  • @leeren_

    @leeren_

    3 жыл бұрын

    Thanks for watching!

  • @ramit7
    @ramit7Ай бұрын

    this is ust too poetically beautiful!

  • @chris-ew9wl
    @chris-ew9wl4 жыл бұрын

    There are so many things I've learned from this talk, and as @Jason Cox and @Leeren said, vim is just an impossible learning curve 🤣. OSC 52 is crazy, terminal emulators should add support to it for out of the box clipboard syncing. I've been pampered by plugins throughout my vim journey, and this talk taught me how wrong I was. I use FZF for finding and opening files, but now I realize vim's built-in, find, sf, gf are as powerful if not more. @Leeren, I hope you produce more videos like this. This was really eye-opening.

  • @chris-ew9wl

    @chris-ew9wl

    4 жыл бұрын

    Side note: I actually watched this video three times already, I was making sure I didn't miss anything. 😁 I've been using vim for about 3 to 4 years now.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you very much! Your comment is super motivating. Am working on one right now on OAuth / JWTs

  • @leeren_

    @leeren_

    4 жыл бұрын

    @@chris-ew9wl Hell yeah!

  • @it89
    @it894 жыл бұрын

    If only there was someone with a fantastic video explaining cool features of vim. Well guess what, there's Leeren.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks, a new one will be out within 6 hours ;)

  • @zhenghongjiang5862
    @zhenghongjiang58624 жыл бұрын

    crazy topic!awesome!

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks!

  • @assilksiksi
    @assilksiksi5 жыл бұрын

    Dude, I love your teaching style! Excellent lecture.

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thanks man

  • @leeren_

    @leeren_

    5 жыл бұрын

    Appreciate it! Will be doing another one soon.

  • @geewiz70
    @geewiz705 жыл бұрын

    "Guess I won't learn much from a vim intro talk." Wrong! I learned how to give a great talk. Well-done slides, great pacing, smooth flow.

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thanks! Glad it helped! More will come soon.

  • @indycinema
    @indycinema4 жыл бұрын

    It really must be said again. This talk is pure VIM bad-assery. More deep dig talks from all developers would be so useful. The basics are out there.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks so much! Yeah, I'm hoping to do this type of deep-dive for an array of different topics in the future

  • @mpwsh
    @mpwsh5 жыл бұрын

    great talk! thank you for sharing

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thank you!

  • @gubasso
    @gubasso5 жыл бұрын

    One of the bests (if not THE best) vim talks ever! Congratulations! Can you share your .vimrc (and other dotfiles)?

  • @leeren_

    @leeren_

    5 жыл бұрын

    I'll make sure to include a link to it for my next talk. I've recently completely cleaned it out and am working on a re-polished version.

  • @MrPesi-wd2jg
    @MrPesi-wd2jg5 жыл бұрын

    Awesome, great Content.

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thank you!

  • @MrUbecom
    @MrUbecom4 жыл бұрын

    Thank you very much for your great talk

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you for watching!

  • @tsnp423
    @tsnp4234 жыл бұрын

    I learnt a lot from you, thanks :)

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thanks for tuning in!

  • @qu4ku
    @qu4ku Жыл бұрын

    mint-quality content. thanks to the author.

  • @senjuchidori9448
    @senjuchidori94484 жыл бұрын

    Bro you are a GOD to Vim, I am so lucky KZread recommend this video to me, Grabe mind blowing, I relied to much to vim cuztom plugins, but, all your commands were sync into my head, I forgot it's 6am in the morning. wala pakoi tulog sukad gahapon, na buang na.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Thank you stay tuned! More commands will come your way

  • @senjuchidori9448

    @senjuchidori9448

    4 жыл бұрын

    @@leeren_ thanks bro very much excited :) - could you also create a demo on how to create a vim script to do some automation to make our vimrc file not being so bloated so we dont have to call every plugin all at once, only the ones that are need, I recently created mine here, it worked, but I know this is a very childish way of ceating such script but it worked hehe!, hope you have a better suggestion here. function! ScrollStop(key) if &buftype !=# "terminal" execute 'normal! ' . nr2char(and(char2nr(a:w), "0b0011111")) endif endfunction function! Fred() :cd ~/ :r!touch .bashrc :e .bashrc :w :r!source ~/.bashrc :bd :cd /c/wamp64/www/devs :e. :set modifiable " :bo 50sp +term " nnoremap :call ScrollStop('w') endfunction function! Cb() call append(1, "function wamp {") call append(2, " cd /c/wamp64/www/devs") call append(3, "}") endfunction autocmd BufReadPre .bashrc call Cb() function! XwwPath() :cd ~/ :r!rm .bashrc :qall endfunction nmap ,ql :call XwwPath() function! WwwPath() :call Fred() endfunction nmap ,www :call WwwPath() function! Ee() :e. endfunction nnoremap x :call Ee() nmap ,vim :find ~/.vim/vimrc nmap ,bash :edit ~/.bashrc My goal here is that every time I open my development path, I would call a function to create a .bashrc file and so when I use :term it opens a terminal that is .git-bash since I am using gitbash for vim as my main text editor, by the way I'm on a Windows machine, so ok the main goal here is that it would create a .bashrc file every time I get to my dev path and when not in use it will delete my .bashrc file if I am done with all my task - so it's simply a script that would create and delete when in use and when not in use. It would be very awesome if I know how to call a plugin form a folder which I already downloaded and have it transfered to my bundle folder when in use and when not in use it would revert or transfer it back where it the plugin folder was called, I am doing this to have my vim editor run fast cause, vimrc are usually bloated because of alot of plugins being used, and only 10% of them is being applied for a certain project :)

  • @aviderambo
    @aviderambo5 жыл бұрын

    Legend Thanks!

  • @leeren_

    @leeren_

    5 жыл бұрын

    Glad I could help!

  • @raiyanreza9764
    @raiyanreza97643 жыл бұрын

    Dude, great stuff, rich in content, loved it! BTW, was wondering if you could also share the PowerPoint?

  • @johnlewis7736
    @johnlewis77363 жыл бұрын

    Awesome!

  • @leeren_

    @leeren_

    3 жыл бұрын

    Thanks!

  • @AlexanderBuggeStage
    @AlexanderBuggeStage Жыл бұрын

    Clipboard thing is the greatest thing I have ever seen

  • @sarangpramod1413
    @sarangpramod14135 жыл бұрын

    Great content! Would love timestamps in the description for future references.

  • @leeren_

    @leeren_

    5 жыл бұрын

    Great idea! I'll add that

  • @leeren_

    @leeren_

    5 жыл бұрын

    Finally added them.

  • @tonyjames1980
    @tonyjames19805 жыл бұрын

    Only 20K views for this excellent talk? By the end of this talk defenitely, you will become an expert!

  • @leerenchang811

    @leerenchang811

    5 жыл бұрын

    Thank you!

  • @marcdominguez6141

    @marcdominguez6141

    5 жыл бұрын

    @@leerenchang811 Can you make the slides available? Very cool, thanks

  • @antonykamp6151

    @antonykamp6151

    4 жыл бұрын

    How times change ;)

  • @leeren_

    @leeren_

    3 жыл бұрын

    :D

  • @justinwong4149
    @justinwong41493 жыл бұрын

    this guy is a legend

  • @leeren_

    @leeren_

    3 жыл бұрын

    Thanks!

  • @skorupa12
    @skorupa125 жыл бұрын

    Great vim instructions. Thank you. One question: how did you do to open terminal buffer?

  • @leeren_

    @leeren_

    5 жыл бұрын

    Thanks. Make sure you either have Vim 8 or Neovim installed and type the command :term

  • @toomasvendelin
    @toomasvendelin4 жыл бұрын

    The talk is very good. Maybe too good for a talk, because it is so densely packed with content. I feel I'll be using it for a reference for a while. Any plans for setting up a small web site? Or vim key mappings for moving around in a KZread video? :) Ah, wait, there's a list of contents hidden in the description!

  • @leeren_

    @leeren_

    4 жыл бұрын

    I have plans for a lot of educational content delivered in the same way. I've been terrible at making myself get started again, but the drive is there and it will happen soon. The next video will probably be something not vim-related. I'm leaning towards security topics right now

  • @JanChristophEbersbach
    @JanChristophEbersbach5 жыл бұрын

    Thank you for sharing all the details about your setup. Could you share the links to the tools you mentioned for a lightweight session management?

  • @leeren_

    @leeren_

    5 жыл бұрын

    www.brain-dump.org/projects/abduco/

  • @forsh2966
    @forsh29663 жыл бұрын

    i use vim for 2 month and I didn't know about that gf things LOL maybe I should start vim again and break for a couple of days using nvim. thank you for the lecture bro

  • @leeren_

    @leeren_

    3 жыл бұрын

    When you're starting off I don't even think you'll notice the difference! NeoVim is great

  • @lancetschirhart7676
    @lancetschirhart76764 жыл бұрын

    _GOD_ I love surfingkeys. It is so underrated. I prefer using h and l to change tabs left and right since left and right scroll is basically useless. I also added grabbing all text by div, p etc instead of having to bother with a highlighter (much more work to do there to improve specificity), and finally, incorporating localStorage into everything for long term saving and having extra clipboards. Now I'm adding in a bunch of shortcuts to change stylings on any page, blowing up the text or changing colors and fonts, saving those changes in localstorage. Also, a vim editor is always available to you for typing (I'm typing this in a vim window now). Surfingkeys is an improvement on an improvement on vimium.

  • @leeren_

    @leeren_

    4 жыл бұрын

    Yeah, surfingkeys is a life-changer for sure!

  • @lancetschirhart7676

    @lancetschirhart7676

    4 жыл бұрын

    @@leeren_ I've never worked on an open source project (and I still don't really get how that works), but Brooks Hong has said for years that he can't keep up, and I spend so many hours customizing it that I think I could help. Do I have to know a low level language to do that kind of thing? I'm only conversant with js. Maybe build out some appendable/prependable clipboards and dated clipboard history stacks in localStorage. I think it's really fun, and so cool to have any conversation (like this one) locked away alongside the url for easy access later. Better yet, I'll post my own in here in a bit and tag you. You can try em out later if you want. :+1:

  • @leeren_

    @leeren_

    4 жыл бұрын

    @@lancetschirhart7676 It's definitely hard if you're not familiar with the foundation of how the project is built - you have to find something you're really passionate about and devote time to digging deep enough to understand how it all works Why not just start with JS? Plenty of projects out there