gvim9 replaces Notepad++

1. Preface & Background
gvim advantages: open source, long historical background, cross-platform
A final screenshot is as follows.
gvim screenshot

2. Windows 10 configuration
1) Download gvim version 9.0 from
https://www.vim.org/download.php
official download
insert image description here

2) Download the color scheme
https://github.com/whatyouhide/vim-gotham/
3) Install the color scheme
official tutorial

A)) Download and put it in the specified directory (create it if the directory does not exist)
Actual operation
B)) Create a new file
File name: .vimrc
Path:
path
Content:
.virmrc file content
C)) Finished.
3. Common operations
are consistent with vim operations under linux.
4. VIM manufacturer operation
Delete all: After pressing the esc key, first press gg (reach the top), then dG
Copy all: After pressing the esc key, first press gg, then ggyG
to select all highlight: After pressing the esc key, first press gg, then ggvG or ggVG

Single line copy: press esc, then yy
Single line delete: press esc, then dd
Paste: press esc, then p

Guess you like

Origin blog.csdn.net/hanmingjun/article/details/129293305