File: abbreviations.mks

package info (click to toggle)
monkeystudio 1.9.0.4%2Bgit20161218-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 41,500 kB
  • ctags: 22,118
  • sloc: cpp: 144,671; ansic: 33,969; python: 2,922; makefile: 127; sh: 122; php: 73; cs: 69
file content (16 lines) | stat: -rw-r--r-- 823 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Monkey Studio IDE Code Snippets
# reset abbreviations
abbreviation clear
# introduce new ones per language
# abbreviation  add Macro   Description Language    Snippet
# C++
abbreviation add "whileb" "while statement" "C++" "while ( | )\n{\n}"
abbreviation add "switchb" "switch statement" "C++" "switch ( | )\n{\n}"
abbreviation add "structd" "struct declaration" "C++" "struct |\n{\n};"
abbreviation add "pu" "public" "C++" "public|"
abbreviation add "pro" "protected" "C++" "protected|"
abbreviation add "pr" "private" "C++" "private|"
abbreviation add "ife" "if else statement" "C++" "if ( | )\n{\n}\nelse\n{\n}"
abbreviation add "ifb" "if statement" "C++" "if ( | )\n{\n}"
abbreviation add "forb" "for statement" "C++" "for ( |; ; )\n{\n}"
abbreviation add "classd" "class declaration" "C++" "class |\n{\npublic:\n};"