Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何映射命令以保存当前文件然后运行它?
我正在尝试这个:
:nnoremap <leader>r :w<CR>| !python %
这会立即运行 python 命令,但在我调用领导密钥时不会。我在这里想念什么?
只是为了跟进康纳所说的话,你可以做这样的事情:
nnoremap <leader>r :w \| !python %<cr>
啊哈,我在写地图时不需要管道字符,只需要第二个冒号:
:nnoremap <leader>r :w<CR> :!python % <CR>