Last active
August 19, 2025 07:12
-
-
Save WuJunkai2004/eb05dfe041eb584049b5bfa1ec64668f to your computer and use it in GitHub Desktop.
task.ini for vim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [file-run] | |
| command:python=python3 "$(VIM_FILENAME)" | |
| command:cpp=g++ "$(VIM_FILEPATH)" -o "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" -std=c++20 -O2 -I .&& "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" | |
| command:javascript=node "$(VIM_FILENAME)" | |
| command:typescript=tsc "$(VIM_FILENAME)" --target ES6&& node "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" | |
| command:c=gcc "$(VIM_FILEPATH)" -o "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" && "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" | |
| command:sh=sh "$(VIM_FILENAME)" | |
| command:asm=asm $(VIM_FILENOEXT) | |
| command:cangjie=cjc -o "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" "$(VIM_FILENAME)" && "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" | |
| cwd=$(VIM_FILEDIR) | |
| output=terminal | |
| version="25-08-19" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment