compiler-explorer.nvim icon indicating copy to clipboard operation
compiler-explorer.nvim copied to clipboard

Run compilers and inspect assembly directly from Neovim with the help of https://godbolt.org

Results 5 compiler-explorer.nvim issues
Sort by recently updated
recently updated
newest added

Replace [curl wrapper](https://github.com/krady21/compiler-explorer.nvim/blob/master/lua/compiler-explorer/http.lua) used for making REST API calls with internal version once such interface is provided in neovim. [Tracking issue upstream](https://github.com/neovim/neovim/issues/23232)

Updates help doc to say that flags need to space seperated and added space when concatenating flags.

The help doc says that compilation flags need to be comma separated. The example in readme uses multiple flags. Neither of these approaches work for me.

It's common to have compiler flags that receive arguments like this `gcc -std=c23` In this case, we can't use vim.split to split the "flags=-std=c23" argument, since it would break the...

I perused the documentation but was not able to find something that does the following: - Say I have ASM/CPP split. the asm buffer "follows" the cursor in the cpp...