runtime(new-tutor): update tutor and correct comandline completion
Commit:
https://github.com/vim/vim/commit/829eda7d381e5f635169c927103568b335cd599d
Author: Phạm Bình An <[email protected]>
Date: Sun Apr 13 17:30:59 2025 +0200
runtime(new-tutor): update tutor and correct comandline completion
Problem: Some parts of the tutor are outdated.
- For example, pressing `<Tab>` after typing `:e` does not complete the
command `:edit`, but shows a completion menu with the first entry being
`:earlier`.
closes: #17107
Signed-off-by: Phạm Bình An <[email protected]>
Signed-off-by: Christian Brabandt <[email protected]>
diff --git a/runtime/tutor/en/vim-01-beginner.tutor
b/runtime/tutor/en/vim-01-beginner.tutor
index 85d693d5f..86efa7856 100644
--- a/runtime/tutor/en/vim-01-beginner.tutor
+++ b/runtime/tutor/en/vim-01-beginner.tutor
@@ -458,7 +458,7 @@ Now go on to the next lesson.
# Lesson 4.1: CURSOR LOCATION AND FILE STATUS
** Type `<C-g>`{normal} to show your location in a file and the file status.
- Type `G`{normal} to move to a line in the file. **
+ Type `{count}G`{normal} to move to line {count} in the file. **
NOTE: Read this entire lesson before executing any of the steps!!
@@ -933,11 +933,20 @@ default. To start using more features you have to create
a "vimrc" file.
3. Press `<C-d>`{normal} and Vim will show a list of commands that start
with "e".
- 4. Press `<Tab>`{normal} and Vim will complete the command name to ":edit".
+ 4. Press `<Tab>`{normal} and Vim will show a menu with possible completions
+ (or complete the match, if the entered command is unique, e.g.
+ ":ed`<Tab>`{normal}" will be completed to ":edit").
- 5. Now add a space and the start of an existing file name: `:edit FIL`{vim}
+ 5. Use `<Tab>`{normal} or `<C-n>`{normal} to go to the next match. Or use
+ `<S-Tab>`{normal} or `<C-p>`{normal} to go to the previous match.
- 6. Press `<Tab>`{normal}. Vim will complete the name (if it is unique).
+ 6. Choose the entry `edit`{vim}. Now you can see that the word `edit`{vim}
+ have been automatically inserted to the command line.
+
+ 7. Now add a space and the start of an existing file name: `:edit FIL`{vim}
+
+ 8. Press `<Tab>`{normal}. Vim will show a completion menu with list of file
+ names that start with `FIL`
NOTE: Completion works for many commands. It is especially useful for
`:help`{vim}.
@@ -956,7 +965,7 @@ NOTE: Completion works for many commands. It is especially
useful for
5. Create a vimrc startup script to keep your preferred settings.
6. While in command mode, press `<C-d>`{normal} to see possible completions.
- Press `<Tab>`{normal} to use one completion.
+ Press `<Tab>`{normal} to use the completion menu and select a match.
# CONCLUSION
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion visit
https://groups.google.com/d/msgid/vim_dev/E1u3zW5-000ibV-Ra%40256bit.org.