diff options
author | Akshita Dixit <436_bt19@iiitkalyani.ac.in> | 2022-11-13 14:26:32 +0530 |
---|---|---|
committer | Akshita Dixit <436_bt19@iiitkalyani.ac.in> | 2022-11-13 14:26:32 +0530 |
commit | 6384e5116639993d1cc449749e5e0df4ba736fa8 (patch) | |
tree | 2182e20675c40ea115d981c64db7ffbe3b8adead /vim.html.markdown | |
parent | 5a9b474a635a1b0b12908f8673b6f4e1e67d0812 (diff) | |
parent | 2d59543e717f46b7defcb4b8964997f1569f78a3 (diff) |
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs into docker-docs
Diffstat (limited to 'vim.html.markdown')
-rw-r--r-- | vim.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim.html.markdown b/vim.html.markdown index f5be9b0d..e0fdf2e0 100644 --- a/vim.html.markdown +++ b/vim.html.markdown @@ -29,7 +29,7 @@ specific points in the file, and for fast editing. :q! # Quit vim without saving file # ! *forces* :q to execute, hence quiting vim without saving ZQ # Quit vim without saving file - :x # Save file and quit vim, shorter version of :wq + :x # Save file(only when the file is modified) and quit vim u # Undo CTRL+R # Redo |