diff options
| author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-09-30 16:07:46 +0530 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-30 16:07:46 +0530 | 
| commit | 981b8be7f0f3778be275156674e7c4ccd1c4ba60 (patch) | |
| tree | a528e5b9995500cd3dd0beb436b1e8c7a454adb3 | |
| parent | b954199e102c5d4c062a3dd8122607bff35f6be5 (diff) | |
| parent | 6198be809290c8e4abd7ef92815d94ea7ef697c6 (diff) | |
Merge pull request #3231 from n7down/vim-fix
[vim/en] Added full screen movement for vim
| -rw-r--r-- | vim.html.markdown | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/vim.html.markdown b/vim.html.markdown index d5c4e865..0eb2c37e 100644 --- a/vim.html.markdown +++ b/vim.html.markdown @@ -34,6 +34,11 @@ specific points in the file, and for fast editing.      k                # Move up one line      l                # Move right one character +    Ctrl+B 	         # Move back one full screen +    Ctrl+F 	         # Move forward one full screen +    Ctrl+D 	         # Move forward 1/2 a screen +    Ctrl+U           # Move back 1/2 a screen +      # Moving within the line      0                # Move to beginning of line | 
