[Vim]Tab

Tue Feb 25

Vim practice

Author:Noritaka

Astroのロゴ。
tab
Copy and paste the below text and type some commands like below.

---
1. :tabnew            (make new tab)
2. :tabedit test.txt  (open test.txt in the tab)
3. gt gT              (next tab  previous tab)
4. :tabn              (next tab  )
5. :tabp              (previous tab)
5. :tabfirst          (go to the firs ttab)
6. :tablast           (go to the last tab)
7. :tabclose          (close tab)
8. :tabonly           (close the other)
9. :tabs              (show tab)
---
<!DOCTYPE html>
<html>
  <head><title>TIP281 Vim</title></head>
  <body><h1>Practice Vim</h1></body>
</html>

Vim