these snippets are repeated code snippets used in competitive programming
~/.config/sublime-text-3/Packages/User
PackageResourceViewer
CppFastOlympicCoding (vvi,pii and so on)
EasyClangComplete ( you have to install clang on ur machine)
SublimeGDB ( `ctrl`+`f5` for debugging )
open preferences
-> settings
and modify the file with the following
"ignored_packages":
[
],
"vintage_start_in_command_mode": true
to set other keys for Esc
~/.config/sublime-text-3/Packages/Vintage/Default.sublime-keymap
and add
{"keys": ["j", "k"],"command": "exit_insert_mode","context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
{"keys": ["J", "K"],"command": "exit_insert_mode","context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
to auto indent the whole file type in command mode gg=G
press ctrl
+ p
-> PackageResourceViewer: OpenResource
-> c++
-> c++ Single File.sublime-bulid
if you want to use the internal terminal of sublime
{
"shell_cmd": "g++ \"${file}\" -o \"${file_path}/${file_base_name}\"",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c++",
"variants":
[
{
"name": "Run",
"shell_cmd": "g++ \"${file}\" -o \"${file_path}/${file_base_name}\" && \"${file_path}/${file_base_name}\""
}
]
}
if you want to use ur system terminal (mine is gnome-terminal
and i am using bash
change them if u use other tools)
{
"cmd": ["g++","-g" ,"$file", "-o", "${file_path}/${file_base_name}"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.c++, source.cxx, source.cpp",
"variants":
[
{
"name": "Run",
"shell": true,
"cmd": ["gnome-terminal -e 'bash -c \"${file_path}/${file_base_name};echo;echo; echo Press ENTER to continue; read line;exit; exec bash\"'"]
}
]
}
modify the file ~/.config/sublime-text-3/Packages/Default/new_templates.py
in class NewSnippetCommand
template = reformat(
"""
<snippet>
<description> </description>
<content><![CDATA[ ]]></content>
<tabTrigger> </tabTrigger>
<scope>source.c, source.objc, source.c++, source.objc++</scope>
</snippet>
""")