Update metaDescriptions

This commit is contained in:
Igor Irianto 2021-01-01 11:46:55 -06:00
parent 27bece36fa
commit ea74bcc714
24 changed files with 26 additions and 26 deletions

View File

@ -1,7 +1,7 @@
---
title: "Starting Vim"
metaTitle: "Starting Vim"
metaDescription: "Learn different ways to start Vim from the terminal"
metaDescription: "Learn different ways to start Vim from the terminal."
---
In this chapter, you will learn different ways to start Vim from the terminal. I highly recommend you use Vim from the terminal as you are typing along. I am currently using Vim 8.2. You should be fine if you use a lower version, but some commands might not be available.

View File

@ -1,7 +1,7 @@
---
title: "Buffers, Windows, and Tabs"
metaTitle: "Buffers, Windows, and Tabs"
metaDescription: "What do buffers, windows, and tabs represent in Vim?"
metaDescription: "What do buffers, windows, and tabs represent in Vim?."
---
If you have used a modern text editor, you are probably familiar with windows and tabs. Vim has three abstractions instead of two: buffers, windows, and tabs.

View File

@ -1,7 +1,7 @@
---
title: "Vim Grammar"
metaTitle: "Vim Grammar"
metaDescription: "Learn how to speak to Vim"
metaDescription: "Learn how to speak to Vim."
---
It is easy to get intimidated by the complexity of many Vim commands. If you see a Vim user doing `gUfV` or `1GdG`, you may not immediately know what these commands do. In this chapter, I will break down the general structure of Vim commands into a simple grammar rule.

View File

@ -1,7 +1,7 @@
---
title: "Moving In A File"
metaTitle: "Moving In A File"
metaDescription: "Moving In A File"
metaDescription: "How to efficiently move around in a file."
---
In the beginning, moving with a keyboard will feel awkward and incredibly slow, but don't give up! Once you get used to it, you can go anywhere in a file faster than a mouse.

View File

@ -1,7 +1,7 @@
---
title: "Insert Mode"
metaTitle: "Insert Mode"
metaDescription: "Insert Mode"
metaDescription: "How to work with insert mode."
---
Insert mode is the default mode of many text editors. In this mode, what you type is what you get.

View File

@ -1,7 +1,7 @@
---
title: "The Dot Command"
metaTitle: "The Dot Command"
metaDescription: "The Dot Command"
metaDescription: "Be lazy and avoid repetition with the dot command."
---
When editing a text, as much as you can, avoid redoing what you just did. In this chapter, you will learn how to use the dot command to easily replay the previous change. It is the simplest and most versatile command to reduce repetitions.

View File

@ -1,7 +1,7 @@
---
title: "Registers"
metaTitle: "Registers"
metaDescription: "Registers"
metaDescription: "Learn how to store data inside Vim registers."
---
Learning Vim registers is like learning algebra for the first time. You don't think you need them until you learn them.

View File

@ -1,7 +1,7 @@
---
title: "Macros"
metaTitle: "Macros"
metaDescription: "Macros"
metaDescription: "How do you automate action with macros?"
---
When editing files, you may find yourself repeating the same actions. Wouldn't it be nice if you can do those actions once and replay them whenever you need it? With Vim macros, you can record actions and store them inside Vim registers.

View File

@ -1,7 +1,7 @@
---
title: "Undo"
metaTitle: "Undo"
metaDescription: "Undo"
metaDescription: "Vim undo deep dive."
---
Undo is an essential feature in any modern software. Vim's undo system is not only capable of undoing and redoing mistakes, but allows you to manipulate and retrieve text across time. In this chapter, you will learn how to undo and redo your text, navigate an undo branch, persist undo, and travel through time.

View File

@ -1,7 +1,7 @@
---
title: "Visual Mode"
metaTitle: "Visual Mode"
metaDescription: "Visual Mode"
metaDescription: "Mastering the visual mode."
---
With visual editors (like LibreOffice Writer, Microsoft Word) you probably know that you can highlight a block of text and apply changes to it. Vim can too, with visual mode. Vim has three different visual modes to use. In this chapter, you will learn how to use each visual mode to manipulate blocks of texts efficiently.

View File

@ -1,7 +1,7 @@
---
title: "Search and Substitute"
metaTitle: "Search and Substitute"
metaDescription: "Search and Substitute"
metaDescription: "Learn how to search and substitute all things."
---
This chapter covers two separate but related concepts: search and substitute. Many times, the texts that you are searching for are not straightforward and you must search for a common pattern. By learning how to use meaningful patterns in search and substitute instead of literal strings, you will be able to target any text quickly.

View File

@ -1,7 +1,7 @@
---
title: "The Global Command"
metaTitle: "The Global Command"
metaDescription: "The Global Command"
metaDescription: "How to perform multiple commands with the global command?"
---
So far you have learned how to repeat the last change with the dot command (`.`), to replay actions with macros (`q`), and to store texts in the registers (`"`).

View File

@ -1,7 +1,7 @@
---
title: "External Commands"
metaTitle: "External Commands"
metaDescription: "External Commands"
metaDescription: "Learn how to use external commands to extend Vim's functionality."
---
Inside the Unix system, you will find many small, hyper-specialized commands where each does one thing well. You can chain these commands to work together to solve a complex problem. Wouldn't it be great if you can use these commands from inside Vim?

View File

@ -1,7 +1,7 @@
---
title: "Command-Line Mode"
metaTitle: "Command-Line Mode"
metaDescription: "Command-Line Mode"
metaDescription: "What is the command-line mode in Vim?"
---
In the last three chapters, you learned how to use the search commands (`/`, `?`), substitute command (`:s`), global command (`:g`), and external command (`!`). These are examples of command-line mode commands.

View File

@ -1,7 +1,7 @@
---
title: "Tags"
metaTitle: "Tags"
metaDescription: "Tags"
metaDescription: "How to use tags to jump to any definition?"
---
One useful feature in text editing is being able to go to any definition quickly. In this chapter, you will learn how to use Vim tags to do that.

View File

@ -1,7 +1,7 @@
---
title: "Fold"
metaTitle: "Fold"
metaDescription: "Fold"
metaDescription: "Learn Vim fold to organize your file."
---
When you read a file, often there are many irrelevant text that hinders you from understanding what that file does. To hide this unnecessary information, you can use Vim fold.

View File

@ -1,7 +1,7 @@
---
title: "Git"
metaTitle: "Git"
metaDescription: "Git"
metaDescription: "How to integrate Vim and git."
---
Vim and git are two great tools for two different things. Git is a version control tool. Vim is a text editor. In this chapter, you will learn different ways to integrate Vim and git together.

View File

@ -1,7 +1,7 @@
---
title: "Compile"
metaTitle: "Compile"
metaDescription: "Compile"
metaDescription: "Learn about Vim compile feature."
---
Compiling is an important subject for many languages. In this chapter, you will learn how to compile from Vim. In addition, you will look at ways to take advantage of Vim's `:make` command.

View File

@ -1,7 +1,7 @@
---
title: "Views, Sessions, And Viminfo"
metaTitle: "Views, Sessions, And Viminfo"
metaDescription: "Views, Sessions, And Viminfo"
title: "Views, Sessions, and Viminfo"
metaTitle: "Views, Sessions, and Viminfo"
metaDescription: "Views, Sessions, and Viminfo."
---
After you worked on a project for a while, you may find that the project to gradually take shape with its own settings, folds, buffers, layouts, etc. It's like decorating your apartment to make it feel like home.

View File

@ -1,7 +1,7 @@
---
title: "Vimrc"
metaTitle: "Vimrc"
metaDescription: "Vimrc"
metaDescription: "Learn about vimrc structure."
---
In the previous chapters, you learned how to use Vim. From now on, you will learn how to customize Vim to fit your coding style.

View File

@ -1,7 +1,7 @@
---
title: "Vim Packages"
metaTitle: "Vim Packages"
metaDescription: "Vim Packages"
metaDescription: "How to install packages natively?"
---
The previous chapter talked about using external plugin managers to install plugins. However, starting at version 8, Vim comes with its own built-in plugin manager called *packages*. In this chapter, you will learn how to use Vim packages to install plugins.

View File

@ -1,7 +1,7 @@
---
title: "Vim Runtime"
metaTitle: "Vim Runtime"
metaDescription: "Vim Runtime"
metaDescription: "Learn about how Vim runtime paths work."
---
In the previous chapters, you learned that Vim automatically looks for special paths like `pack/` (Ch 22) and `compiler/` (Ch 19) inside the `~/.vim/` directory. These are examples of Vim runtime paths.

View File

@ -1,7 +1,7 @@
---
title: "Vimscript Basic Data Types"
metaTitle: "Vimscript Basic Data Types"
metaDescription: "Vimscript Basic Data Types"
metaDescription: "Learn the common data types of Vimscript."
---
In the next few chapters, you will learn about Vimscript, Vim's built-in programming language.

View File

@ -1,7 +1,7 @@
---
title: "Equalities, Conditionals, and Loops"
metaTitle: "Equalities, Conditionals, and Loops"
metaDescription: "Equalities, Conditionals, and Loops"
metaDescription: "How to write basic expressions with equalities, conditionals, and loops."
---
In this chapter, you will learn about equalities, conditionals, and loops using the data types you learned in the previous chapter.