10 Advanced Vim Features (You Probably Didn't Know)

Поділитися
Вставка
  • Опубліковано 26 чер 2022
  • In this video, I'm showing 10 advanced Vim features that you likely didn't know yet.
    More information: blog.sebastian-daschner.com/e...
    My dotfiles: github.com/sdaschner/dotfiles
    Developer Productivity Course: blog.sebastian-daschner.com/e...
  • Наука та технологія

КОМЕНТАРІ • 122

  • @sociologie4507
    @sociologie4507 9 місяців тому +16

    A note on recordings (or macros): if you save the macro in the a register, and after using it you realized that you need to correct (or add) one aspect of the commands that you recorded, you can print the a reg in the current file typing "app then you make the changes and to replace the new version of the macro, you can type "ayy. Amazing stuff.

    • @billtotman
      @billtotman Місяць тому

      The best tip in the comments.
      I was going to mention looping within a recording, this is much more useful.
      Thx!

  • @not_ever
    @not_ever Рік тому +35

    You don't need to use echo to do maths operations in Vim. In insert mode if you type = 1+200/4 you will get the same answer 51 appear in your doc.
    For the other example you can store 1 + 2 +...+13 in a register in normal mode:
    "lyy (this stores the line in a register called l, l can be any letter)
    then in insert mode:
    = l
    Basically = in insert mode is how to do maths in vim
    To quickly write a list of numbers on separate lines you can (in normal mode) :put(range(1,10))

  • @ThePhiliposophy
    @ThePhiliposophy 2 роки тому +28

    It's refreshing to watch someone achieve so much with vanilla vim. It seems to me that today a lot of vim users including me look for plugins to do things instead of combing built in features. The Unix way is infinitely more powerful and adaptable. I learned a few new tricks today, Danke dir!

    • @rsmith31416
      @rsmith31416 Рік тому

      Well said! I'm glad to know even some new users are aware of that :)

    • @vorrnth8734
      @vorrnth8734 Рік тому +5

      But the unix way is not including everything in one program. That means a small core app + plugins would be more unix like.
      But I get your point. I am wondering about all the filetree plugins when this functionality is builtin for ages.

    • @rsmith31416
      @rsmith31416 Рік тому +2

      @@vorrnth8734 In fact, even vim itself is built with that design in mind: makeprg, keywordprg, formatprg, equalprg, grepprg, cscopeprg

    • @auntiecarol
      @auntiecarol Рік тому

      As a long time Emacser but a noob Vimmer, I have to say I appreciate this very much as well. It's important to get used to the vernacular before relying on the crutch of packages... and those kinds of videos are very thin on the ground.

  • @Ma1ne2
    @Ma1ne2 Рік тому +2

    Awesome, so helpful! I would love more videos like this.

  • @cristobaljavier
    @cristobaljavier 2 роки тому +2

    really useful, didn't know some of these, thanks for sharing!

  • @windowsrefund
    @windowsrefund Рік тому +1

    Lots of great stuff here. Well done!

  • @davidh.4944
    @davidh.4944 Рік тому +6

    I'd like to recommend the vim-speeddating plugin. It extends the and keys to operate on dates, ordinal numbers, and other similar patterns (customizable), and to operate on multiple visually-selected lines at once (creating incrementing lists).

  • @viduraakalanka8341
    @viduraakalanka8341 Рік тому +1

    Thanks Sebastian for this great video. Learned a lot from you.

  • @n0kodoko143
    @n0kodoko143 Рік тому +5

    As a daily driver of vanilla vim for years (relatively recent neovim convert), i as not aware that during selection you could run commands (IN VISUAL MODE) with the "!". I've definitely used "command mode" before with the 'bang' , but i was not aware of THAT REALLY NEAT TRICK!! Thank you, subbed!

    • @ImperiumLibertas
      @ImperiumLibertas Рік тому

      you should still use neovim even without plugins. there have been major refactors from the original codebase that makes it much more performant.

  • @Skatox
    @Skatox Рік тому +2

    Great video, this is the only place where I could find a great example for the norm command.

    • @yash1152
      @yash1152 2 місяці тому

      timestamp or summary?
      > _"only place where I could find a great example for the norm command"_

  • @blessdarah1256
    @blessdarah1256 Рік тому +1

    The gx command really got me. Thank you.

  • @bicycleninja1685
    @bicycleninja1685 Рік тому +1

    Great stuff! Followed along. Some stuff is new; some I'd forgotten. Will have to do it every day for a while to retain the info.

  • @avnerduchovni6675
    @avnerduchovni6675 11 місяців тому +1

    What an exceptional video! I have hours of watch time on the topic, but this is gold! Thank you for teaching me things that will improve my life. You are a true professional and you inspire me

  • @Ghasakable
    @Ghasakable 2 роки тому +2

    The feature of writing to the end of line was all what I was looking for, many many thanks. keep these amazing tips and tricks posted always,

    • @Pameliux23
      @Pameliux23 11 місяців тому

      What do you mean writing? Go to the end of the line with g?

  • @pratikmahamuni9384
    @pratikmahamuni9384 2 роки тому +57

    Great video.
    You can also use the last technique to increment a whole list, suppose you have:
    1.
    1.
    1.
    1.
    1.
    Then in visual mode you can select from the second 1. to the end and type `g Ctrl-A` and it will increment the list.

    • @Phenomenal7
      @Phenomenal7 Рік тому

      This is Gold !!

    • @fickthissut
      @fickthissut Місяць тому

      This trick is in help if i remember correctly

  • @sorvex9
    @sorvex9 Рік тому +2

    Him writing goodbye world made me chuckle.

  • @noam65
    @noam65 Рік тому +1

    This is really good. Thanks!

  • @AlexEscalante
    @AlexEscalante Рік тому +1

    Awesome video! I really enjoyed it!

  • @coffeedude
    @coffeedude 7 місяців тому +1

    gx is super useful for me! I didn't know about it, thank you so much!!

  • @lylez00
    @lylez00 5 місяців тому +2

    These commands work when you're in insert mode:
    Type Ctrl-r, then press the = key. Then type in a formula, like 3*3 and hit return. It will insert 9.
    Type the beginning of a line that is the same as some other line, for example, if you type "import", then type Ctrl-x Ctrl-l and it will present a pop-up menu with lines already in the file that begin with the same characters as what you've typed. Use Ctrl-p and Ctrl-n to navigate up and down that list, and hit return to insert the desired line.
    Ctrl-x Ctrl-f and it will display all the filenames in the current directory. Use Ctrl-p and Ctrl-n to navigate up and down that list, and hit return to insert the desired filename. If you select a path, you can type Ctrl-x Ctrl-f again to navigate one level down in that path.
    Ctrl-r % inserts the current filename.
    When not in insert mode:
    Ctrl-w f will open the file whose filename is under the cursor.
    : Ctrl-f will allow you to open and edit the command history, and re-execute a command (or a modified command if you modify it) by pressing return on it.
    :r !, and it will insert the results of that command. For example, :r !date will insert the current date, assuming you have the Unix date command in your path.

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  5 місяців тому +1

      Nice, thanks for sharing! Most of them were new to me 🙂

  • @MilMike
    @MilMike Рік тому +1

    vim seems like a tool that is always giving features. I have been using vim for years but I always learn something new like in your video here.

  • @mrxyz5439
    @mrxyz5439 Рік тому +1

    Really nice and helpful... Thanks!

  • @Mawkler
    @Mawkler Рік тому +34

    Ctrl-p/Ctrl-n isn't autocompletion. It's completion. The prefix "auto" usually refers to the popup showing up automatically on each keystroke.
    Your can use @@ to repeat your latest macro.
    While ! is very useful, Vim actually has :sort built in.
    You can also use g in visual mode to increment numbers in multiple lines linearly

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  Рік тому +1

      Re autocompletion: Good point 🙂
      Nice points, thanks for sharing!

  • @Mederfish
    @Mederfish Рік тому +2

    Autosource mit Gpg ist schon ziemlich nice! Danke fürs teilen)

  • @MrSman210
    @MrSman210 Рік тому +1

    Great video!

  • @dankrukov1890
    @dankrukov1890 2 роки тому +2

    not just nice to know but incredibly productive when built in muscle memory, esp sending vim buffer in and out the unix cli pipelines

  • @NostraDavid2
    @NostraDavid2 Рік тому +9

    You can apply-repeat your macro from the cursor until EOF via:
    VG:normal @x
    Where x is your chosen macro ('a', in this video)
    You Visually select until the End Of the File (G), then apply the "normal @x" command.

    • @ivanheffner2587
      @ivanheffner2587 Місяць тому

      You can make a recursive macro by having it call itself. In the example, appending @a to the macro it would repeatedly call itslelf until it hit an error, which in this case would be when it tried to move past the end of the file.

  • @YannMetalhead
    @YannMetalhead Рік тому +1

    Great tips.

  • @anuragbisht1200
    @anuragbisht1200 Рік тому +1

    you can check surround commands to (y)add, (d)remove or (c)change brackets around a text object and it is repeatable too

  • @elliothuntington8980
    @elliothuntington8980 Рік тому +5

    First, great video. I love your presentation. It's high quality. Thank you. I liked and subscribed with notifications. Would you mind making a video showing what tools you use to make your tutorial videos? I imagine you're using OBS Studio? It would be nice to see your setup and process.
    I do think it would be helpful if you would index your content in the comments of you post. I'm providing it for this video below:
    0:28 - Auto-complete
    1:50 - Buffers
    4:02 - Recordings
    6:32 - : normal
    9:07 - : ! command
    11:18 - Open files /URLs with gf / gx
    12:36 - Encrypting files with :X
    0:28 - Auto-complete
    13:55 - AutoSource
    16:00 - Spell Checking
    18:10 - Arithmetics

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  Рік тому

      Thanks!
      For my video process: blog.sebastian-daschner.com/entries/chroma-keying-video-setup

  • @felloffthebus
    @felloffthebus Рік тому +1

    1. Sweet, I knew that one
    2. Lmao. From the command line: vim -p [file1] [file2] opens two files in tabs, switch between by pressing 'gt' aka go tab. Edit your tab colors in .vimrc. Open all files in single directory, in tabs, with vim -p *
    3. Recordings are great. Don't use that to comment out code though, that's something I did commonly. Use visual block at the top and comment downwards: Ctrl + v, go down, press shift + i, enter your language's comment character, press escape. All commented.
    4. Pretty cool, didn't know that, but visual block mode will do that more intuitively imo. Ctrl + v, highlight lines to edit, shift + i, call(" , Ctrl + v again, shift + A, ");, done.
    5. Love bash commands in Vim. So hot. Run git commands, create/delete files, append contents of files to other files.. Do anything.
    6. What. That's dope. Fuck I wish this worked with like, web framework codebases but those paths are usually defined/appended based on their own rules :/
    7. Okay this one makes me really happy. I like this one.
    8. I should really just read the manual at this point. Spelling good is nice.
    9. What the fuck.

  • @MoreChannelNoise
    @MoreChannelNoise 11 місяців тому +1

    been using vim for years and didn't know some of this! gf to goto a file is great !

  • @lkda01
    @lkda01 2 місяці тому

    the zsh at the end is doped 😂😂😂

  • @Daniel-be1xn
    @Daniel-be1xn Рік тому +140

    best feature of vim is neovim

    • @7xr1e20ln8
      @7xr1e20ln8 Рік тому +6

      This 💯 I gave up on Vim and switched completely to neovim.

    • @NostraDavid2
      @NostraDavid2 11 місяців тому +5

      False. While Neovim is neat, it's not made for productivity. The hours I wasted because something updated and broke one thing or another...
      If you want to tinker, Neovim is great. If you just want to be productive in Vim, stick with Vim. Much more stable API, no constant switching between whatever is the newest plugin manager, etc.

    • @dioticdrone
      @dioticdrone 11 місяців тому

      ​@@NostraDavid2not if you know how to use it well. The productivity boost you get using it every day far out way the occasional hiccup you get sorting out broken plugins after an update. Usually doesn't take more than an hour, and that happens like once or twice a year.

    • @sohamchatterjee750
      @sohamchatterjee750 11 місяців тому

      💯

    • @shanewalsch
      @shanewalsch 5 місяців тому +9

      ​@@NostraDavid2just don't update plugins

  • @silvanorosa6521
    @silvanorosa6521 5 місяців тому +1

    good tips ..

  • @justmeandopensource
    @justmeandopensource Рік тому +1

    Hi Sebastian, thanks for these tips. BTW is your terminal font JetBrains Mono?

  • @pgeo6089
    @pgeo6089 Рік тому +1

    Thanks a lot! How did you get the syntax highlighting (at 20:33) when putting the regex together?

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  Рік тому +1

      That's the regular search highlighting in Vim. If it looks different in your editor, check out my Vim config: github.com/sdaschner/dotfiles/blob/master/.vimrc

  • @amberswilddiaries2831
    @amberswilddiaries2831 Рік тому

    Ok that recording thing is just crazyyyyyy

  • @foifirst
    @foifirst 5 місяців тому

    Awesome

  • @matiasbpg
    @matiasbpg Рік тому +1

    I find weird that you call macros recordings and auto commands autosourcing. Besides that great video!

  • @ktappdev
    @ktappdev 11 місяців тому +1

    Subbed

  • @odanabunaga2505
    @odanabunaga2505 3 місяці тому

    great video, thanks!
    I only wish we could see your cmd line as you type

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  3 місяці тому

      Thanks! Are there any commands from the cli that I typed that you missed? I don't quite get that comment

    • @odanabunaga2505
      @odanabunaga2505 3 місяці тому +1

      ​@@SebastianDaschnerIT apologies, I meant that it would be nice to be able to see the entered keys for longer. And thanks for explaining recordings, up to now I never used those and hated to be entangled in that mode lol

  • @GeoffreyNimal
    @GeoffreyNimal Рік тому

    Encryption is not include in Neovim…
    Does someone know if there is some plugin to open vim’s encrypted file with neovim ?

  • @Argletrough
    @Argletrough 10 місяців тому

    Buffers are even easier to use than how you present them:
    :ls gives you a list of all your open buffers
    :b lets you switch to any buffer by name *with completion*
    CTRL-^ and CTRL-6 let you switch between the two most recent buffers instantly.
    With this workflow, I pretty much never close buffers manually (I'd usually close Vim before the number of buffers becomes hard to manage anyway).

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  10 місяців тому

      If that works for you great :) My mental model follows more a sorted list that I cycle though like left and right (like browser tabs) which works well for me

  • @GooogleGoglee
    @GooogleGoglee Рік тому

    Teaching is not for everyone
    But thank you for sharing

  • @berkedel
    @berkedel 2 роки тому

    Any recommended tips and trick for beginner using plain vim without the plugin?

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  Рік тому +2

      As for tips just try to get as much practice & exposure as possible, i.e. try to change it in the envs where you code the most (editors, IDEs with vi mode, ...).
      For tutorials I found this helpful: danielmiessler.com/study/vim/

  • @erikp6614
    @erikp6614 3 місяці тому

    For arithmetic bc is a better alternative than the shell - V :! bc

  • @alaanvv
    @alaanvv 17 днів тому

    should change the tilte
    10 Advanced Vim Features (You Probably Didn't Know) (If you use it to create notes)

  • @arunkumarkurapati8093
    @arunkumarkurapati8093 Місяць тому

    Hello, is there trick or command or control to auto complete the brackets. like on typing open bracket we should get the closed bracket automatically. If yes please let me know.

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  29 днів тому

      There are multiple Vim plugins for that such as AutoClose. Haven't use any of them so can't comment but you can start from there

  • @TidusUltimate
    @TidusUltimate Рік тому

    hey how do you use norm to enter insert mode and then back to normal mode?? I need to paste the first word of each line at the end of the same line and I don't know how to do it

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  Рік тому

      I mostly use the :norm together with the visual mode, i.e. V -> select lines -> :norm ... -> Enter and you're back in normal mode

    • @davidh.4944
      @davidh.4944 Рік тому

      To input a non-printing character into a command (or anywhere, really), you can press '' followed by the key you want (escape, in this case).
      I was able to globally copy the first word of each line to the end of it, with a space separator, using this:
      :v/^$/ norm ^yiWA ^[p
      Where '^[' is where I used ''. That's the _caret notation_ string for .
      So that's "go to start, yank inner Word, Append space, escape, paste", to clarify the string.
      :normal can take a line range, so '% norm' will run it on all lines, but in this case the command tries to duplicate blank lines, so I instead used ':v/^$/' to skip them.
      ( ':v' is the inverse form of ':(g)lobal', a "global not". ':g!' also works.)
      It's also possible to use the :execute command to build a normal command with text-based escapes:
      :v/^$/ exec "norm yiWA \p"
      A final option is to just record your actions for a single line as a macro, "qa", then use ":v/^$/ norm @a" to run it on every line. 'q' records everything as-is, including movements between modes.

  • @svenwindpassinger2170
    @svenwindpassinger2170 8 місяців тому

    Q: How can I activate a vim feature?
    My Register "+ and "* are not existing. when i watch :version there is a -(minus sign) before the -clipboard.
    How can i activate +clipboard to have the Register "+ and "*
    thanks for awnsering
    greatings
    Sven

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  8 місяців тому

      IIRC there might be some steps that you need to do from your operating system and shell integration to have these system clipboard registers available... but your best bet is to search for your particular OS / distribution and shell setup.

  • @ketch-dev
    @ketch-dev 2 роки тому

    do u use vim or idea for java development?

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  2 роки тому +1

      Both, I use IdeaVim: blog.sebastian-daschner.com/entries/my-favorite-ideavim-features

  • @vorrnth8734
    @vorrnth8734 Рік тому +7

    I find norm to be most useful in a g or v command e.g: g/Pattern/norm A;

  • @justanaveragebalkan
    @justanaveragebalkan Рік тому

    Best vim feature, to configure your emacs, it's not a sin it's a penance :)

  • @carstenschlegel6975
    @carstenschlegel6975 3 місяці тому +1

    Make Upercase with macro recording and norm:
    Record for 1 Line
    qavUwvUA!
    (every word Uppercase and ! and the end of line).
    Then marks the lines (sample 20 lines below):
    jV20j
    Now run the macro for each line:
    :norm @a
    You don't must go to the beginning of the line and to the next line in the macro.
    If you record a macro that finds text, like qa0f!a!!!
    (begin of line, find !, add !!!)
    And runs for 20 lines its only work if EVERY line has a !
    Execution was break if one line has no ! !!!!
    The :norm @a execute the macro for each line, if one line has no ! this line was ignored, but it continues at the next... -> it works

  • @Awwe12675
    @Awwe12675 2 роки тому

    I need understand how to read help and use it like pro

  • @lukajeliciclux3074
    @lukajeliciclux3074 2 роки тому

    Last command is :.shell (bash, zsh itd.) is that true?

  • @RajasegarChandiran
    @RajasegarChandiran 11 місяців тому

    Normal is awesome

  • @obsidianmd
    @obsidianmd 2 роки тому

    12:35 It's not possible encrypt any file in Nvim I guess. Not worked for me.

    • @vaisakhkm783
      @vaisakhkm783 2 роки тому

      yes in nvim it doesn't seems to be working, but in vim,it is there

    • @keycapslapper7080
      @keycapslapper7080 2 роки тому +1

      Typing `:help encrypt` gives a note saying it has been removed. The github issue threads about it are pretty funny

  • @Awwe12675
    @Awwe12675 2 роки тому +1

    How to do “” in array
    arr[]={1,2,2}
    To
    arr[]={“1”,”2”,”3”}

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  2 роки тому +2

      If it's only these three entries, I'd just jump to each number and insert it directly (`i"` and repeat two times with `.` and then `a"`).
      If it's many entries, I'd search-replace the comma to be on individual lines and use the `:norm` command like shown in the video.

    • @Awwe12675
      @Awwe12675 2 роки тому

      @@SebastianDaschnerIT okay can u make in future video about set -o vi mode

    • @LuisCassih
      @LuisCassih Рік тому +1

      I'm sure there should be a better way, but using regex and replace within the visual select you can achieve this.
      first select all inside {} -> vi{
      :s/\%V\(\w*\)/"\1"/g
      \%V -> to affect only selected and not the entire line
      \( \w*\) -> capture word (which is (\w*) escaped)
      /"\1" -> replace with " and \1 is the previously captured word
      /g -> global
      It's a bit complex but well, it works lol

  • @MA-748
    @MA-748 Рік тому +2

    :X doesnt work in neovim :(

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  Рік тому

      Yes, that's unfortunate :( Maybe a manual approach using PGP can help you

  • @yash1152
    @yash1152 2 місяці тому

    no timestamps? not even a summary list comment?

  • @ivanheffner2587
    @ivanheffner2587 Місяць тому +2

    I’ve been using vi / vim for 25+ years. Usually when I watch these sorts of videos they are either pretty basic, rely on plugins, or are very niche to one person’s workflow. This one was pretty good and well above the average. gf / gx and being able to handle file encryption are things I didn’t know about that I can certainly see being very useful.

    • @antb533
      @antb533 Місяць тому

      what are your favorite tips?

    • @ivanheffner2587
      @ivanheffner2587 Місяць тому

      @@antb533 from this video? Any video that discusses registers/macros gets a +1 from me; it’s a very underrated feature, which IIRC dates back to OG vi. :normal is a feature that I see the usefulness of, but rarely use. g is a Vimism that that introduces a lot functionality that rarely gets discussed in a lot of these “advanced vim” videos. I especially appreciate that this video focuses on Vim. Not NeoVim, but Vim. And not plugins.
      Outside of this video, some of the features I enjoy about Vim is the ability to use :grep and :make (along with their associated “prg” settings) to populate a QuickFix window that lets me quickly jump between occurrences of patterns or error/warnings.
      Touched on in this video: using ! to filter the buffer or selected lines through an extensor command. I use this frequently with jq to pretty format large json objects.

  • @svenwindpassinger2170
    @svenwindpassinger2170 Рік тому +1

    Thank you!
    Usefull, but please explane your stroks next time.
    Because your tipping was to fast for me.
    Understanding and watch the keys is hard work for the audience!

  • @luxiax1836
    @luxiax1836 2 роки тому +3

    Using an ide over vim, never makes sense, never... =p

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  2 роки тому

      Never is a strong word ;) I use Vim for smaller text editing tasks. Otherwise I kind of agree with you, I use IdeaVim in my IDE: blog.sebastian-daschner.com/entries/my-favorite-ideavim-features

  • @johnlistertoraneo4325
    @johnlistertoraneo4325 Рік тому

    --/\ who is

  • @anon_y_mousse
    @anon_y_mousse 2 місяці тому

    I often find that just using `s` on a range is faster than `:norm`. If you need to wrap a list often, consider `:'

  • @vyacheslavkapitonov9677
    @vyacheslavkapitonov9677 Рік тому +2

    Vim provides not only basic calculation
    Try 123*123

    • @Argletrough
      @Argletrough 10 місяців тому

      Think you mean Ctrl+R = in insert mode

  • @davidhiudianto9863
    @davidhiudianto9863 23 дні тому

    What's the meaning of dot in front of the exclamation mark `:.!zsh` on the last bonus tip?

    • @SebastianDaschnerIT
      @SebastianDaschnerIT  22 дні тому

      It's a range declaration, in this case current line (text processing command have such a syntax: `: [ range ] command [ args ... ]`)

  • @tonygreen7735
    @tonygreen7735 Рік тому +3

    I thought I was a bit of a vi[m] ninja having been using it for 30 years, but I didn't know about 1/2 of these tips. Top work, this is great.