
nvim
List of commands for nvim:
-
nvim:tldr:04f17 nvim: Enter normal mode and save (write) the file, and quit.$
:wq try on your machineexplain this command -
nvim:tldr:1c1a8 nvim: Enter normal mode and undo the last operation.$
u try on your machineexplain this command -
nvim:tldr:6a648 nvim: Copy ("yank") or cut ("delete") the current line (paste it with `P`).$
${select} try on your machineexplain this command -
nvim:tldr:83165 nvim: Perform a regular expression substitution in the whole file.$
:%s/${regular_expression}/${replacement}/g try on your machineexplain this command -
nvim:tldr:e299e nvim: Search for a pattern in the file (press `n`/`N` to go to next/previous match).$
/${search_pattern} try on your machineexplain this command -
nvim:tldr:f7dac nvim: Enter text editing mode (insert mode).$
i try on your machineexplain this command