
vim
List of commands for vim:
-
vim:ai:c4dbc Open the 40_custom file in the /etc/grub.d directory using the vim text editor$ vim /etc/grub.d/40_customtry on your machineexplain this command
-
vim:ai:d165c Open a new file named Dockerfile using the Vim text editor$ vim Dockerfiletry on your machineexplain this command
-
vim:tldr:3e81b vim: Open a file at a specified line number.$ vim +${line_number} ${filename}try on your machineexplain this command
-
vim:tldr:508fc vim: Perform a regular expression substitution in the whole file.$ :%s/${regular_expression}/${replacement}/gtry on your machineexplain this command
-
vim:tldr:ccd9c vim: Enter normal mode and undo the last operation.$
u try on your machineexplain this command