Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. #-------------------------------------------
  2. # Misc
  3. #-------------------------------------------
  4. # Define the "editor" for text files as first action
  5.  
  6. mime ^text, label editor = vim -- "$@"
  7.  
  8. mime ^text, label pager = "$PAGER" -- "$@"
  9.  
  10. !mime ^text, label editor, ext xml|json|csv|tex|py|pl|rb|js|sh|php = vim -- "$@"
  11.  
  12. !mime ^text, label pager, ext xml|json|csv|tex|py|pl|rb|js|sh|php = "$PAGER" -- "$@"
  13.  
  14. ext 1 = man "$1"
  15.  
  16. ext s[wmf]c, has zsnes, X = zsnes "$1"
  17.  
  18. ext s[wmf]c, has snes9x-gtk,X = snes9x-gtk "$1"
  19.  
  20. ext nes, has fceux, X = fceux "$1"
  21.  
  22. ext exe = wine "$1"
  23.  
  24. ext sc = sc "$1"
  25. name ^[mM]akefile$ = make
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement