Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Mastering Vim
Mastering Vim

Mastering Vim: Efficient and effortless editing with Vim and Vimscript , Second Edition

eBook
€8.99 €25.99
Paperback
€31.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Mastering Vim

Advanced Editing and Navigation

Throughout this chapter, you will get a lot more comfortable using Vim in your day-to-day tasks. You will be working with a Python code base, which should provide you with a set of real-life scenarios for working with code. If you have a project of your own handy, you can choose to try out the lessons taught in this chapter using your own project files; however, you might find that not every scenario applies to your code base.

The following topics will be covered in this chapter:

  • A quick-and-dirty way of installing Vim plugins (with a better way to install and manage plugins following in Chapter 3, Follow the Leader – Plugin Management).
  • Keeping your workspace organized when working with multiple or long files using buffers, windows, tabs, and folds
  • Navigating complex file trees without leaving Vim with Netrw, NERDTree, Vinegar, or CtrlP
  • Advanced navigation throughout a file, and covering more types of text objects: using...

Technical requirements

This chapter will cover working with a Python code base. You can get the code we’ll be editing in this chapter from GitHub at https://github.com/PacktPublishing/Mastering-Vim-Second-Edition/tree/main/Chapter02.

Installing plugins

This chapter will start by introducing Vim plugins. Plugin management is a rather broad subject (and it’s covered in Chapter 3, Follow the Leader – Plugin Management, as well), but we’re starting out with just a few plugins, so we won’t have to worry ourselves with that topic yet.

First, let’s go through the one-time setup:

  1. You’ll need to create a directory to store plugins. Execute the following on the command line:
    $ mkdir -p ~/.vim/pack/plugins/start

For Windows users

If you’re using GVim under Windows, you’ll have to create the vimfiles directory under your user folder (usually C:\Users\<username>), and then create pack\plugins\start folders inside of it.

  1. You’ll want to tell Vim to load documentation for each plugin, as it doesn’t do so automatically. For that, add the following line to your ~/.vimrc file:
        silent! helptags ALL  ...

Organizing the workspace

So far, we’ve only worked with a single file in Vim. When working with code, you usually have to work with multiple files at once, switching back and forth, making edits across multiple files, and looking up certain bits somewhere else. Luckily, Vim provides an extensive way to deal with many files:

  • Buffers are the way Vim internally represents files; they allow you to switch between multiple files quickly
  • Windows organize the workspace by displaying multiple files next to each other
  • Tabs are a collection of windows
  • Folds allow you to hide and expand certain portions of files, making large files easier to navigate

Here’s a screenshot illustrating the preceding points:

Figure 2.1 – Buffers, windows, tabs, and folds conveniently illustrated in one place.

Figure 2.1 – Buffers, windows, tabs, and folds conveniently illustrated in one place.

Let’s understand the content in the screenshot:

  • Multiple files (labeled kitchen/egg.py, kitchen/ingredient.py, and...

Navigating file trees

Since software projects contain a lot of files and directories, finding a way to traverse and display these using Vim comes in handy. This section will cover five different ways that you can navigate your files: using the built-in Netrw file manager or using the :e command with the wildmenu option enabled, as well as using the NERDTree, Vinegar, and CtrlP plugins. All of these provide different ways to interact with files and can be mixed and matched.

Netrw

Netrw is a built-in file manager in Vim (if we want to get technical, it’s a plugin that ships with Vim). It allows you to browse directories and functions, similar to any other file manager you’ve worked with in your favorite OS.

Use :Ex (the full command is :Explore) to open the file navigation window:

Figure 2.17 – Netrw file manager window, with a handy help screen above the directory tree.

Figure 2.17 – Netrw file manager window, with a handy help screen above the directory tree.

Netrw is native to Vim

Netrw is fully integrated with...

Navigating text

We’ve covered some basic movements (by characters, words, and paragraphs), but Vim supports a lot more options for navigation.

Check the following if you want some movement within the current line:

  • As you already know, h and l move the cursor left and right, respectively
  • t (until) followed by a character allows you to search the line for that character and place the cursor before the character, while T allows you to search backward
  • f (find) followed by a character allows you to search the current line for that character and move the cursor to the character, while F allows you to search backward
  • _ takes you to the first non-blank character of the line, ^ takes you the beginning of the line, and $ takes you to the end of the line

Text objects

A word consists of numbers, letters, and underscores. A WORD consists of any characters except for whitespace (like spaces, tabs, or newlines). This distinction helps with more precise navigation...

Copying and pasting with registers

You can copy text by using the y (yank) command, followed by a movement or a text object. You can also hit y from a visual mode when you have selected some text.

Tip

In addition to all of the standard movement, you can use yy to yank the contents of the current line.

Let’s yank the following piece of code by typing ye (yank until the end of the word):

Figure 2.35 – ye will yank (copy) has_spam into the default register.

Figure 2.35 – ye will yank (copy) has_spam into the default register.

This will copy has_spam into our default register. Now, place the cursor where you want the text to appear (the text is inserted after the cursor):

Figure 2.36 – Place cursor before the position where you want to insert the text.

Figure 2.36 – Place cursor before the position where you want to insert the text.

To paste the code, hit p:

Figure 2.37 – p will insert the default register contents after the cursor.

Figure 2.37 – p will insert the default register contents after the cursor.

The delete and change operators also yank content so that you can paste it later...

Summary

You now know how to navigate core concepts Vim operates by using buffers to represent files, utilizing split windows, and using tabs to organize multiple windows. You’ve also learned how to use folds to make navigating large files more manageable.

You now should be more confident getting through a large code base by navigating files with plugins such as Netrw, NERDTree, Vinegar, and CtrlP. Oh, and this chapter taught you a quick (even though it’s a slightly manual) way to install said plugins.

This chapter covered new movement operations, text objects, ways to quickly dart into insert mode, and how to make even fancier jumps throughout the file using the EasyMotion plugin. We’ve also dipped into search functionality, searching both within a single file and across the whole code base. You get a bonus point for trying out the ack plugin.

Finally, this chapter covered the concept of registers, and how you can use them to supercharge copying and pasting...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Develop proficiency in Vim and Vimscript for efficient text editing
  • Integrate Vim into your daily development workflow and customize it to suit your preferences
  • Learn through examples in Python code, explore scenarios with version control, and focus on the build/test flow
  • Purchase of the print or Kindle book includes a free PDF eBook

Description

Discover what makes Vim one of the most popular text editors in the world, renowned for its blend of efficiency, customization, extensibility, and portability. With Mastering Vim, you’ll come to appreciate its extensive plugin system and seamless integration with various tools, which enable Vim to provide developers with an extensible and customizable development environment for programmers. This comprehensive guide to Vim will help you become more efficient at editing text: be it prose or code. Starting from the basics, advanced movement, and text operations, you’ll learn how Vim can be used as a full-fledged IDE. You’ll then progress to refactoring, debugging, building, testing, version control, plugins, and Vimscript through practical guidance. This second edition comes packed with fully revamped examples that are both engaging and easy to understand, complemented by drawings and diagrams that help to visualize the concepts covered in the book. Updated to cover Vim 9, this edition includes updated installation and troubleshooting instructions, along with examples in Vim9script. By the end of this Vim book, you’ll be well-versed in Vim and have the skills you need to build a complete application using this popular text editor.

Who is this book for?

This book is for software developers interested in using Vim in their workflow. Anyone new to Vim and looking to gain in-depth knowledge will find this guide useful. Basic familiarity with Python programming is beneficial but not necessary to get started.

What you will learn

  • Become more efficient at navigating and editing text
  • Install and update Vim on Linux, Mac, Windows, and ChromeOS machines
  • Identify which plugins you need and how to keep them organized
  • Explore and tailor Vim configurations to fit your needs
  • Write scripts to complement your workflow using Vimscript
  • Learn that Vim is better than Emacs

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jul 31, 2024
Length: 300 pages
Edition : 2nd
Language : English
ISBN-13 : 9781835080436
Category :
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Jul 31, 2024
Length: 300 pages
Edition : 2nd
Language : English
ISBN-13 : 9781835080436
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 103.97
Modern Python Cookbook
€41.99
Mastering Vim
€31.99
Hands-On Genetic Algorithms with Python
€29.99
Total 103.97 Stars icon
Banner background image

Table of Contents

10 Chapters
Chapter 1: Getting Started Chevron down icon Chevron up icon
Chapter 2: Advanced Editing and Navigation Chevron down icon Chevron up icon
Chapter 3: Follow the Leader Plugin Management Chevron down icon Chevron up icon
Chapter 4: Understanding Structured Text Chevron down icon Chevron up icon
Chapter 5: Build, Test, and Execute Chevron down icon Chevron up icon
Chapter 6: Refactoring Code with Regex and Macros Chevron down icon Chevron up icon
Chapter 7: Making Vim Your Own Chevron down icon Chevron up icon
Chapter 8: Transcending the Mundane with Vimscript Chevron down icon Chevron up icon
Chapter 9: Where to Go from Here Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(1 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
Tiny Aug 26, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Reading now - an excellent review of the basic principles of VIM, a historical background, and then tips and tricks coming rapid-fire to move skills ahead.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.