/plugins/SuperAbbrevs/tags/stable_002/SuperAbbrevs.html

# · HTML · 61 lines · 60 code · 1 blank · 0 comment · 0 complexity · 3f3dfa6aed1bac1df50706fcd5e164da MD5 · raw file

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <title>SuperAbbrevs</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  6. </head>
  7. <body>
  8. <h1>SuperAbbrevs</h1>
  9. <p>Author: <i>Sune Simonsen</i></p>
  10. <p><i>This will soon be updated</i></p>
  11. <p>
  12. This plugin gives you eclipse style code templates. You can define a
  13. template wich contains variables. You assosiate the template with a
  14. abbreviation, if you have the caret placed after the abbreviation and
  15. execute the command:</p>
  16. <p>
  17. <i>Plugins-&#062; SuperAbbrevs -&#062; Expand Abbreviation</i>
  18. </p>
  19. <p>
  20. it will be expanded. You can then use the
  21. <i>SHIFT-TAB</i> and <i>TAB</i> keys, to jump back and forth between
  22. the variables.
  23. </p>
  24. <h2>Template syntax</h2>
  25. <p>This is best explained with an example.</p>
  26. <pre>
  27. Iterator ${2:iter} = ${1:list}.iterator();
  28. while ($2.hasNext()){
  29. ${3:Type} ${4:element} = ($3)$2.next();
  30. $end
  31. }
  32. </pre>
  33. <p>
  34. The above example, shows a java template, with the variables
  35. <i>$1</i>, <i>$2</i>, <i>$3</i> and <i>$4</i>. Variable <i>$1</i>'s
  36. default value is list, and <i>$2</i>'s default value is iter, and so on.
  37. When this template is inserted the following code will be inserted, and
  38. the <i>list</i> will be selected.
  39. </p>
  40. <pre>
  41. Iterator iter = list.iterator();
  42. while (iter.hasNext()){
  43. Type element = (Type)iter.next();
  44. }
  45. </pre>
  46. <p>
  47. There are to types of variables, a variable that defines the default
  48. value of the variable, and a plain variable. Each has a tab index, if
  49. the variable should have a default value, it should be define in the
  50. first occurrence of the variable. Like index 2 has defined it's
  51. default value to <i>iter</i> (<i>${2:iter}</i>). When you have defined
  52. the default value you can just use the variable index <i>$2</i> to
  53. referrer to the variable. The template also has to contain a <i>$end</i>
  54. variable, that represent the last entry, if you write in the <i>$end</i>
  55. variable the template will be disabled and you go back to normal mode.</p>
  56. <p>
  57. I suggest that you bind <i>Expand abbreviation</i> to a key.
  58. </p>
  59. </body>
  60. </html>