• <i id='vlMcA'><tr id='vlMcA'><dt id='vlMcA'><q id='vlMcA'><span id='vlMcA'><b id='vlMcA'><form id='vlMcA'><ins id='vlMcA'></ins><ul id='vlMcA'></ul><sub id='vlMcA'></sub></form><legend id='vlMcA'></legend><bdo id='vlMcA'><pre id='vlMcA'><center id='vlMcA'></center></pre></bdo></b><th id='vlMcA'></th></span></q></dt></tr></i><div id='vlMcA'><tfoot id='vlMcA'></tfoot><dl id='vlMcA'><fieldset id='vlMcA'></fieldset></dl></div>
      <bdo id='vlMcA'></bdo><ul id='vlMcA'></ul>
    <tfoot id='vlMcA'></tfoot>

      <legend id='vlMcA'><style id='vlMcA'><dir id='vlMcA'><q id='vlMcA'></q></dir></style></legend>

      1. <small id='vlMcA'></small><noframes id='vlMcA'>

        Vim [编译和] 运行快捷方式

        时间:2023-06-29

          • <i id='HR6Hf'><tr id='HR6Hf'><dt id='HR6Hf'><q id='HR6Hf'><span id='HR6Hf'><b id='HR6Hf'><form id='HR6Hf'><ins id='HR6Hf'></ins><ul id='HR6Hf'></ul><sub id='HR6Hf'></sub></form><legend id='HR6Hf'></legend><bdo id='HR6Hf'><pre id='HR6Hf'><center id='HR6Hf'></center></pre></bdo></b><th id='HR6Hf'></th></span></q></dt></tr></i><div id='HR6Hf'><tfoot id='HR6Hf'></tfoot><dl id='HR6Hf'><fieldset id='HR6Hf'></fieldset></dl></div>
            • <bdo id='HR6Hf'></bdo><ul id='HR6Hf'></ul>
                <tbody id='HR6Hf'></tbody>

              1. <small id='HR6Hf'></small><noframes id='HR6Hf'>

                1. <legend id='HR6Hf'><style id='HR6Hf'><dir id='HR6Hf'><q id='HR6Hf'></q></dir></style></legend>
                  <tfoot id='HR6Hf'></tfoot>
                  本文介绍了Vim [编译和] 运行快捷方式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  基本上我想要的是 vim 中的键盘快捷键,让我[编译和]运行当前正在编辑的 C、C++ 或 Python 程序.在伪代码中:

                  Basically what I want is a keyboard shortcut in vim that lets me [compile and] run the currently being edited C, C++ or Python program. In psuedocode:

                  when a shortcut key is pressed:
                      if current_extension == 'c' then
                          shell: gcc this_filename.c -o this_filename_without_extension
                          if retcode == 0 then shell: ./this_filename_without_extension
                      else if current_extension == 'cpp' then
                          shell: g++ this_filename.cpp -o this_filename_without_extension
                      if retcode == 0 then shell: ./this_filename_without_extension
                      else if current_extension == 'py' then
                          shell: python this_filename.py
                      end if
                  end key
                  

                  我意识到我的要求可能有点高,但如果可能的话我会很喜欢的!

                  I realise I might be asking a bit much but would love it if this was possible!

                  推荐答案

                  这样的事情会起作用.只需创建映射 或任何您想保存并编译和运行程序的文件类型 autocmd.它使用 exec 来构建字符串并使用 shellescape 来转义文件名.

                  Something like this would work. Just create filetype autocmd that map <F4> or whatever you want to save and compile and run the program. It uses exec to build the string and uses shellescape to escape the file name.

                  autocmd filetype python nnoremap <F4> :w <bar> exec '!python '.shellescape('%')<CR>
                  autocmd filetype c nnoremap <F4> :w <bar> exec '!gcc '.shellescape('%').' -o '.shellescape('%:r').' && ./'.shellescape('%:r')<CR>
                  autocmd filetype cpp nnoremap <F4> :w <bar> exec '!g++ '.shellescape('%').' -o '.shellescape('%:r').' && ./'.shellescape('%:r')<CR>
                  

                  % 是当前缓冲区文件名.%:r 是没有扩展名的缓冲区文件名

                  % is the current buffer filename. %:r is the buffer filename without extension

                  这篇关于Vim [编译和] 运行快捷方式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:你在 Vim 中调试 C++ 代码吗?如何? 下一篇:C 和 C++ 中的 Web 服务

                  相关文章

                    <tfoot id='eGFU9'></tfoot>

                    <small id='eGFU9'></small><noframes id='eGFU9'>

                      <i id='eGFU9'><tr id='eGFU9'><dt id='eGFU9'><q id='eGFU9'><span id='eGFU9'><b id='eGFU9'><form id='eGFU9'><ins id='eGFU9'></ins><ul id='eGFU9'></ul><sub id='eGFU9'></sub></form><legend id='eGFU9'></legend><bdo id='eGFU9'><pre id='eGFU9'><center id='eGFU9'></center></pre></bdo></b><th id='eGFU9'></th></span></q></dt></tr></i><div id='eGFU9'><tfoot id='eGFU9'></tfoot><dl id='eGFU9'><fieldset id='eGFU9'></fieldset></dl></div>

                        <bdo id='eGFU9'></bdo><ul id='eGFU9'></ul>
                      <legend id='eGFU9'><style id='eGFU9'><dir id='eGFU9'><q id='eGFU9'></q></dir></style></legend>