This plugin requires the following:
- Vim 8.0 or later
- g++ (linux)
You can install this plugin using vim-plug. If you don't have vim-plug installed yet, follow the instructions on the vim-plug website to install it. Once you have vim-plug installed, add the following line to your .vimrc
file: Plug 'ElIsaac/compilercpp'
. Then, open Vim and run the following command: :PlugInstall
. vim-plug will automatically download and install the C++ compilation plugin.
To compile the current C++ file, simply run the following command in Vim: :CompilerCPP
. This will run the C++ compiler on the current file (compiling all .cpp output files in the same directory) and output the results to a terminal.
By default, compiler-cpp-vim
does not have any keyboard shortcuts, but here are a few examples:
let mapleader=" "
map <Leader>co :CompilerCPP<CR>
nmap <F10> :CompilerCPP<CR>
This plugin is distributed under the MIT License. See the LICENSE file for more details.
Este es un plugin simple para Vim que compila archivos C++ utilizando el compilador g++. Este plugin es adecuado para personas que quieren compilar archivos C++ en Vim de una manera extremadamente rapida.
Este plugin requiere lo siguiente:
- Vim 8.0 o posterior
- g++ (linux)
Puede instalar este plugin utilizando vim-plug. Si aún no tiene vim-plug instalado, siga las instrucciones en el sitio web de vim-plug para instalarlo. Una vez que tenga vim-plug instalado, agregue la siguiente línea a su archivo .vimrc
: Plug 'ElIsaac/compilercpp'
. Luego, abra Vim y ejecute el siguiente comando: :PlugInstall
. vim-plug descargará y instalará automáticamente el plugin de compilación de C++.
Para compilar el archivo C++ actual, simplemente ejecute el siguiente comando en Vim: :CompilerCPP
. Esto ejecutará el compilador de C++ en el archivo actual (compilando todos los archivos de salida .cpp en el mismo directorio) y su salida sera ejecutada en una terminal
por defecto compiler-cpp-vim
no tiene atajos de teclado, pero aqui hay un par de ejemplos
let mapleader=" "
map <Leader>co :CompilerCPP<CR>
nmap <F10> :CompilerCPP<CR>
Este plugin es distribuido bajo la Licencia MIT. Consulte el archivo LICENSE para obtener más detalles.