You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
523 B

  1. prefix = [
  2. {
  3. 'ostring':['+u','++update'],
  4. 'help':'update the listings for ext',
  5. 'action':'store_true',
  6. },
  7. ]
  8. common = [
  9. {
  10. 'ostring':['+e','++edit'],
  11. 'help': 'open in editor',
  12. 'action': 'store_true',
  13. },
  14. {
  15. 'ostring':['arg'],
  16. 'help':'commnad-line args',
  17. 'action':'store',
  18. 'nargs':'*'
  19. }
  20. ]
  21. exts = [
  22. {
  23. 'ext' : 'py',
  24. 'opts' : []
  25. },
  26. {
  27. 'ext' : 'java',
  28. 'opts': []
  29. }
  30. ]
  31. exe = [
  32. ]