Skip to content

Instantly share code, notes, and snippets.

@artem78
Created October 11, 2025 20:37
Show Gist options
  • Save artem78/e866d72d84378167fe3dcef891897dd6 to your computer and use it in GitHub Desktop.
Save artem78/e866d72d84378167fe3dcef891897dd6 to your computer and use it in GitHub Desktop.

Набор полезных шаблонов для автонабора в Carbide C++

Установка

Window > Preferences > C/C++ > Editor > Templates > Import...

<?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="true" context="org.eclipse.cdt.ui.text.templates.c" deleted="false" description="Code for emulator only" enabled="true" name="ifdebug">#ifdef __WINSCW__&#13;
${line_selection}${cursor}&#13;
#endif</template><template autoinsert="true" context="org.eclipse.cdt.ui.text.templates.c" deleted="false" description="Code for emulator only" enabled="true" name="ifdebugelse">#ifdef __WINSCW__&#13;
${line_selection}${cursor}&#13;
#else&#13;
&#13;
#endif</template></templates>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment