Day 17 - Grammar & Spelling
This commit is contained in:
parent
03fa26f5db
commit
7b22f44ee2
@ -55,7 +55,7 @@ There is some cool fast functionality with vim that allows you to do menial task
|
||||
|
||||

|
||||
|
||||
Now we want to replace that word with 90DaysOfDevOps, we can do this by hitting `esc` and typing `:%s/Day/90DaysOfDevOps`
|
||||
Now we want to replace that word with 90DaysOfDevOps, we can do this by hitting `ESC` and typing `:%s/Day/90DaysOfDevOps`
|
||||
|
||||

|
||||
|
||||
@ -63,7 +63,7 @@ The outcome when you hit enter is that the word day is then replaced with 90Days
|
||||
|
||||

|
||||
|
||||
Copy and Paste was a big eye-opener for me. Copy is not copy it is yank. we can copy using `yy` on our keyboard in normal mode. `p` paste on the same line, `P` paste on a new line.
|
||||
Copy and Paste was a big eye-opener for me. Copy is not copied it is yanked. we can copy using `yy` on our keyboard in normal mode. `p` paste on the same line, `P` paste on a new line.
|
||||
|
||||
You can also delete these lines by choosing the number of lines you wish to delete followed by `dd`
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user