sublime text

最后发布时间:2022-02-20 11:13:15 浏览量:

安装

https://www.sublimetext.com/3
https://gist.github.com/OrionUnix/51ae230f5f9ea6c332b5639f556cc1d6
https://taromieno.netlify.app/post/sublimetext_setup_2018/

R support

https://bishwarup-paul.medium.com/a-guide-to-using-r-in-sublime-text-27f78b33f872

python support

https://packagecontrol.io/packages/Anaconda
https://stackoverflow.com/questions/28656309/how-can-i-have-autocomplete-for-python-libraries-in-sublime

C/C++ support

https://packagecontrol.io/packages/EasyClangComplete
https://stackoverflow.com/questions/40730405/sublime-text-autocomplete-plugin-for-c

{
    "encoding": "utf-8",
    "working_dir": "$file_path",
    "shell_cmd": "g++ \"$file_name\" -o \"$file_base_name\"",
    "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
    "selector": "source.c++",

    "variants":
    [
    
     {   
        "name": "cppRun",
        "shell_cmd": "./${file_base_name}"
        },
        {   
        "name": "cppRunInCommand",
        "shell_cmd": "gnome-terminal --  bash -c \"'${file_path}/${file_base_name}';read -p '\nPress any key to continue...'\""
        }
    ]
}

setting

"hot_exit": false,
"remember_open_files": false,