ClassQuiz
Play
Explore
Search
Docs
GitHub
Register
Log in
Donate
❤️
ClassQuiz
Play
Neovim Quiz
Let's vim 🎉
Made by
@jceb
0
0
6
111
Practice
Download
Report
Which key moves the cursor up ⬆?
1: Which key moves the cursor up ⬆?
20s
h
k
j
l
What happens when you type "hello" into vim?
2: What happens when you type "hello" into vim?
20s
The editor writes "hello"
The editor writes "llo"
The editor opens a new line below the current one
The cursor makes uncontrolled movements
What are counts good for?
3: What are counts good for?
20s
They help me to count my money
They help me to execute movements and operators faster
They display the current line in the status bar
They display the number of open files
A text-object is a ..
4: A text-object is a ..
20s
word
function
paragraph
selector
How do you move forward by 3 words (including punctuation)?
5: How do you move forward by 3 words (including punctuation)?
20s
3W
W3
3w
f3
What is normal mode?
6: What is normal mode?
20s
The mode to insert text
The mode I wish would insert text
The mode to execute fancy commands
The mode you're normally in
What's the correct path to store your Neovim configuration in Linux?
7: What's the correct path to store your Neovim configuration in Linux?
20s
~/.config/nvim/
~/nvim/config/
~/.nvim/
~/.nvimrc
How do you move to line 42?
8: How do you move to line 42?
20s
:l 42
42k
42j
42G
How do you create a new line below the cursor without entering insert mode?
9: How do you create a new line below the cursor without entering insert mode?
20s
o
a
O
A
What is an operator?
10: What is an operator?
20s
The guy who installed my laptop
It's a keyboard shortcut that deletes the next word
It's a keyboard shortcut that expects an argument
It's a keyboard shortcut that switches modes
How do you switch to insert mode and place the cursor before the current cursor?
11: How do you switch to insert mode and place the cursor before the current cursor?
20s
i
a
I
A
Which mode doesn't exist in vim?
12: Which mode doesn't exist in vim?
20s
visual-block mode
visual-paragraph mode
visual-character mode
visual-line mode
How do you delete the text inside double quotes?
13: How do you delete the text inside double quotes?
20s
dd
diw
di"
de
How do you replace the current line with the output of ls?
14: How do you replace the current line with the output of ls?
20s
:.!ls
!ls
:!ls
!!ls
How do you copy the current line and paste it 3 lines below?
15: How do you copy the current line and paste it 3 lines below?
20s
yy3p
yy3kp
2y3p
yy3jP
How do you quit vim?
16: How do you quit vim?
20s
:q
:qa!
:q!
ZQ