Answers for "what is vim"

9

vim download

Want to download Vim 8.2 for Windows?

Go to the appropriate link:
	-Windows 64-bit:
    	https://github.com/vim/vim-win32-installer/releases/download/v8.2.2875/gvim_8.2.2875_x64_signed.exe
    -Windows 32-bit:
    	https://github.com/vim/vim-win32-installer/releases/download/v8.2.2875/gvim_8.2.2875_x86_signed.exe

Download and run the appropriate files!
Posted by: Guest on October-05-2020
20

vim

vim is a great code editor for mac.

My opinions:
Fast
Stable
Great shortcuts
Works better than most programs

Some bad things:
It took my quite a long time to figure out how to download it,
too much of an effort to list here

also i would like to thank people for viewing my answers, i've been using firefox for a while now and now that i'm back to chrome, my dev helping ratio has increased dramatically.
Posted by: Guest on August-31-2020
5

how to use vim

:help
Posted by: Guest on November-24-2020
0

what does %! mean vim

" Waht does :%! mean in vim
" this is apply what follows to the entire files
:% 
" this is run the command
!
" Run the command on the entire file. 
" apply json pretty print formatting to the entire file
:%!python -m json.tool
Posted by: Guest on June-09-2021

Browse Popular Code Answers by Language