Please read the new rule regarding the restriction on the use of AI tools. ×

How to compile and Execute in vim or Gvim Like tmwilliam168 and the and the flags of c++

Revision en2, by BTSprathampatel, 2020-09-04 09:09:54

This is my vim commands for compile and Execute the code

  1. :w
  2. :!g++ %
  3. :!filename.exe

This is my Gvim c++ flags for c++

~~~~~ :!g++ -std=c++17 -Wshadow -Wall -o "%e" "%f" -O2 -Wno-unused-result `~~~~

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en3 English BTSprathampatel 2020-09-10 07:20:38 4 Tiny change: 'Wall -o "%e" "%f" -O2 -Wno' -> 'Wall -o "%:r" "%" -O2 -Wno'
en2 English BTSprathampatel 2020-09-04 09:09:54 37
en1 English BTSprathampatel 2020-09-04 09:08:55 284 Initial revision (published)