Enjoy Slackware 15.0!
Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision Last revision Both sides next revision | ||
slackbook:vi [2012/09/12 20:50 (UTC)] sycamorex [Sources] Bullet Points |
slackbook:vi [2012/09/16 15:10 (UTC)] mfillpot [Vi Cheat Sheet] Updated with original text and formatting |
||
---|---|---|---|
Line 4: | Line 4: | ||
- | Scattered all around your computer are thousands of text files. To a new user, this may seem inconsequential, | + | Scattered all around your computer are thousands of text files. To a |
+ | new user, this may seem inconsequential, | ||
+ | Slackware Linux uses a plain-text file for configuration. This allows | ||
+ | users to make changes to the system quickly, easily, and intuitively. | ||
+ | In chapter | ||
+ | **//cat//** and **//less//** that | ||
+ | can be used to read these files, but what if we want to make changes to | ||
+ | them? For that, we need a text editor, and | ||
+ | **//vi//** is up to the task. | ||
- | In short, vi is one of the oldest and most powerful text editors still used today. It's beloved by system administrators, | ||
- | A little further explanation is needed to learn exactly what vi is today though, as Slackware Linux technically doesn't include vi. Rather, Slackware includes two vi " | + | In short, **//vi//** is one of the oldest and most |
+ | powerful text editors still used today. It's beloved by system | ||
+ | administrators, programmers, hobbiests, and others the world over. In | ||
+ | fact, nearly | ||
+ | **//vi//**; only the next chapter on | ||
+ | **//emacs//** was written with that editor. | ||
- | vi is very powerful, but also somewhat cumbersome and challenging for a new user to learn. However, mastering vi is an important skill for any self-respecting system administrator to learn, as vi is included on nearly every Linux distribution, | ||
+ | A little further explanation is needed to learn exactly what | ||
+ | **//vi//** is today though, as Slackware Linux | ||
+ | technically doesn' | ||
+ | Slackware includes two vi //" | ||
+ | and **// | ||
+ | features to vi such as syntax highlighting, | ||
+ | network support. We won't go too deeply into all these details. By | ||
+ | default, if you execute **//vi//** on Slackware | ||
+ | Linux, you'll be using **// | ||
+ | examples in this chapter will assume that is what you are using. If | ||
+ | you've used another Linux distribution before, you may be more familiar | ||
+ | with **// | ||
+ | the symlink for ''/ | ||
+ | ''/ | ||
+ | startup scripts. **//vim//** is generally considered | ||
+ | to be more feature-rich than **// | ||
+ | **// | ||
+ | more features than most users will ever need. | ||
+ | |||
+ | |||
+ | **//vi//** is very powerful, but also somewhat | ||
+ | cumbersome and challening for a new user to learn. However, mastering | ||
+ | **//vi//** is an important skill for any | ||
+ | self-respecting system administrator to learn, as | ||
+ | **//vi//** is included on nearly every Linux | ||
+ | distribution, | ||
+ | It's even included in Mac OS X. | ||
+ | Once you've learned **//vi//**, you'll not have to | ||
+ | learn another text editor to work on any of these systems. In fact, | ||
+ | **//vi//** clones have even been ported to Microsoft Windows | ||
+ | systems, so you can use it there too. | ||
===== The Different Modes of vi ===== | ===== The Different Modes of vi ===== | ||
- | New users are often frustrated when using vi for the first time. When invoked without any arguments, vi will display a screen something like this. | + | New users are often frustrated when using **//vi//** |
+ | for the first time. When invoked without any arguments, | ||
+ | **//vi//** will display a screen something like | ||
+ | this. | ||
+ | |||
+ | |||
+ | < | ||
- | < | ||
~ | ~ | ||
~ | ~ | ||
Line 27: | Line 74: | ||
~ | ~ | ||
~ | ~ | ||
- | Command</ | + | ~ |
+ | Command | ||
+ | </ | ||
- | At this point, the user will begin typing and expect the keys pressed to appear in the document. Instead, something really strange happens. The reason for this is simple. vi has different operation " | ||
+ | At this point, the user will being typing and expect the keys he | ||
+ | presses to appear in the document. Instead, something really strange | ||
+ | happens. The reason for this is simple. **//vi//** | ||
+ | has different operation //" | ||
+ | mode. Command mode is the default; in this mode, each keystroke | ||
+ | performs a particular action such as moving the cursor around, deleting | ||
+ | text, yanking (copying) text, searching, etc. | ||
===== Opening, Saving, and Quitting ===== | ===== Opening, Saving, and Quitting ===== | ||
- | Ok, so you've decided that you want to learn how to use vi. The first thing to do is learn how to open and save files. Opening files is actually pretty easy. Simply type the filename as an argument on the command-line and vi will happily load it for you. For example, vi chapter_11.xml will open the file chapter_11.xml and load its content onto the screen, simple enough. But what if we've finished with one document and wish to save it? We can do that in command mode using the [:w] command. When in command mode, pressing the : key temporarily positions the cursor on the very bottom line of the window and allows you to enter special commands. (This is technically known as ex-mode after the venerable ex application which we will not document here.) The command to save your current work is [:w]. Once this is done, vi will write your changes to the buffer back into the file. If you wish to open another document, simply use the [:e other_document] command and vi will happily open it for you. If you've made changes to the buffer but haven' | + | Ok, so you've decided that you want to learn how to use |
+ | **//vi//**. The first thing to do is learn how to | ||
+ | open and save files. Opening files is actually pretty easy. Simply type | ||
+ | the filename as an argument on the command-line and | ||
+ | **//vi//** will happily load it for you. For | ||
+ | example, vi chapter_11.xml will open the file | ||
+ | '' | ||
+ | screen, simple enough. But what if we've finished with one document and | ||
+ | wish to save it? We can do that in command mode using the //:w// | ||
+ | command. When in command mode, pressing the < | ||
+ | temporarily positions the cursor on the very bottom line of the window | ||
+ | and allows you to enter special commands. (This is technically known as | ||
+ | ex-mode after the venerable | ||
+ | which we will not document here.) The command to save your current work | ||
+ | is //:w//. Once this is done, **//vi//** will | ||
+ | write your changes to the buffer back into the file. If you wish to | ||
+ | open another document, simply use the //:e other_document// | ||
+ | command and **//vi//** will happily open it for you. | ||
+ | If you've made changes to the buffer but haven' | ||
+ | //:e// will fail and print a warning message on the bottom line. | ||
+ | You can bypass this with the //:e!// command. Most ex-mode | ||
+ | commands in **//vi//** can be //" | ||
+ | < | ||
+ | that you want to abandon any changes you've made to the buffer and open | ||
+ | the other document immediately. | ||
- | But what if I don't like my changes and want to quit or start over? That's easily done as well. Executing the [:e!] command without any arguments will re-open the current document from the beginning. Quitting vi is as simple as running the [:q] command if you haven' | ||
+ | But what if I don't like my changes and want to quit or start over? | ||
+ | That's easily done as well. Executing the //:e!// command | ||
+ | without any arguments will re-open the current document from the | ||
+ | beginning. Quitting **//vi//** is as simple as | ||
+ | running the //:q// command if you haven' | ||
+ | the buffer, or //:q!// if you'd like to quit and abandon those | ||
+ | changes. | ||
===== Moving Around ===== | ===== Moving Around ===== | ||
- | Moving around in vi is perhaps the hardest thing for a new user to learn. vi does not traditionally use the directional arrow keys for cursor movement, although in Slackware Linux that is an option. Rather, movement is simply another command issued in command-mode. The reason for this is rather simple. vi actually predates the inclusion of directional arrow keys on keyboards. Thus, movement of the cursor had to be accomplished by using the few keys available, so the right-hand "home row" keys of h, j, k, and l were chosen. These keys will move the cursor about whenever vi is in command mode. Here's a short table to help you remember how they work. | + | Moving around in **//vi//** is perhaps the hardest |
+ | thing for a new user to learn. | ||
+ | traditionally use the directional arrow keys for cursor movement, | ||
+ | although in Slackware Linux that is an option. Rather, movement is | ||
+ | simply another command issued in command-mode. The reason for this is | ||
+ | rather simple. | ||
+ | inclusion of directional arrow keys on keyboards. Thus, | ||
+ | movement of the cursor had to be accomplished by using the few | ||
+ | keys available, so the right-hand | ||
+ | < | ||
+ | < | ||
+ | whenever | ||
+ | short table to help you remember how they work. | ||
^Command ^ Result ^ | ^Command ^ Result ^ | ||
Line 47: | Line 144: | ||
|l|Move the cursor one character right| | |l|Move the cursor one character right| | ||
- | Moving around is a little more powerful than that though. Like many command keys, these movement keys accept numerical arguments. For example, 10j will move the cursor down 10 lines. You can also move to the end or beginning of the current line with $ and ^, respectively. | + | Moving around is a little more powerful than that though. Like many |
+ | command keys, these movement keys accept numerical arguments. For | ||
+ | example, | ||
+ | can also move to the end or beginning of the current line with | ||
+ | < | ||
===== Editing A Document ===== | ===== Editing A Document ===== | ||
- | Now that we're able to open and save documents, as well as move around in them, it's time to learn how to edit them. The primary means of editing is to enter insert mode using either the i or a command keys. These either insert text at the cursor' | + | Now that we're able to open and save documents, as well as move around |
+ | in them, it's time to learn how to edit them. The primary means of | ||
+ | editing is to enter insert mode using either the < | ||
+ | < | ||
+ | cursor' | ||
+ | location. Once into insert mode, you can type any text normally and it | ||
+ | will be placed into your document. | ||
+ | order to save your changes by pressing the < | ||
===== Vi Cheat Sheet ===== | ===== Vi Cheat Sheet ===== | ||
- | Since vi can be difficult to learn, I've prepared a short cheat sheat that should help you with the basics until you begin to feel comfortable. | + | Since **//vi//** can be difficult to learn, I've |
+ | prepared a short cheat sheat that should help you with the basics until | ||
+ | you begin to feel comfortable. | ||
^ Command ^ Result ^ | ^ Command ^ Result ^ | ||
Line 87: | Line 195: | ||
|:w file|Save the current document as ' | |:w file|Save the current document as ' | ||
|:x|Save and quit| | |:x|Save and quit| | ||
+ | ====== Chapter Navigation ====== | ||
+ | |||
+ | **Previous Chapter: [[slackbook: | ||
- | =====Sources===== | + | **Next Chapter: [[slackbook: |
+ | ======Sources====== | ||
* Original source: http:// | * Original source: http:// |