Guest User

Untitled

a guest
Apr 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. {
  2. "common lisp let": {
  3. "prefix": "llet",
  4. "body": [
  5. "(let ((${1:var}))",
  6. " ${2:body})"
  7. ],
  8. "description": "common lisp let"
  9. },
  10. "common lisp if": {
  11. "prefix": "iif",
  12. "body": [
  13. "(if (${1:condition} )",
  14. " (${2:dothis} )",
  15. " (${3:elsedothis} )) "
  16. ],
  17. "description": "common lisp if"
  18. },
  19. "common lisp defun": {
  20. "prefix": "ddefun",
  21. "body": [
  22. "(defun ${1:function name} (${2:vars})",
  23. " ${3:body}) "
  24. ],
  25. "description": "common lisp defun"
  26. },
  27. "common lisp and": {
  28. "prefix": "aand",
  29. "body": [
  30. "(and (${1:cond1})",
  31. " (${2:cond2}))"
  32. ],
  33. "description": "common lisp and"
  34. },
  35. "common lisp dotimes": {
  36. "prefix": "ddotimes",
  37. "body": [
  38. "(dotimes (${1:var} ${2:times} ${3:optionalwhendone})",
  39. " ${4:body})"
  40. ],
  41. "description": "common lisp dotimes"
  42. },
  43. "common lisp or": {
  44. "prefix": "oor",
  45. "body": [
  46. "(or (${1:this})",
  47. " (${2:that}))"
  48. ],
  49. "description": "common lisp or"
  50. },
  51. "common lisp conditional": {
  52. "prefix": "ccond",
  53. "body": [
  54. "(cond ((${1:this}) ${2:that})",
  55. " ((${3:this}) ${4:that})",
  56. " ((${5:this}) ${6:that}))"
  57. ],
  58. "description": "common lisp conditional"
  59. }
  60. }
Add Comment
Please, Sign In to add comment