Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 172 Bytes

vim.md

File metadata and controls

20 lines (16 loc) · 172 Bytes
title
Vim

File

# Create or edit a file
  vim <file-name>

# Save and exit
  [ESC]
  :x
  [ENTER]

# Exit without saving
  [ESC]
  :q!
  [ENTER]