-
In Visual Mode copy the required text and press 'y' to copy.
-
To switch between different files:-
- Use ':Ex' command to open the neovim built in file explorer.
- Use ':Telescope find_files' to find files using telescope.
-
To duplicate a line or more in Visul Mode Select the wanted text and press 'YP'
-
To go on the top of the file press 'gg'.
-
And to go on the bottom of the file press 'G'.
-
Use '$' to go to the end of the line.
-
Use '0' zero to go to the start of the line.
-
Two to the next empty line or to jump between blocks use:-
- (for up --> '{')
- (for down --> '}')
-
Use 'dd' to delete a line in normal mode.
-
Use 'u' to undo.
-
Use 'Ctrl+R' to redo.