Advertisement
konalisp

filetypes.Fs.conf

Sep 21st, 2015
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. # For complete documentation of this file, please see Geany's main documentation
  2. [styling]
  3. # Edit these in the colorscheme .conf file instead
  4. default=default
  5. commentline=comment_line
  6. commentblock=comment
  7. commentblock2=comment
  8. commentblock3=comment
  9. literate_comment=comment
  10. literate_codedelim=preprocessor
  11. number=number_1
  12. keyword=keyword_1
  13. reserved_operator=keyword_1
  14. import=preprocessor
  15. string=string_1
  16. character=character
  17. class=class
  18. operator=operator
  19. identifier=identifier_1
  20. instance=type
  21. capital=type
  22. module=function
  23. data=number_2
  24. pragma=preprocessor
  25. preprocessor=preprocessor
  26. stringeol=string_eol
  27.  
  28. [keywords]
  29. # all items must be in one line
  30. keywords=case class data default deriving do else forall foreign if import in infix infixl infixr instance let module newtype of then type where
  31. ffi=capi ccall export import interruptible prim safe stdcall unsafe
  32. reserved_operators=-> .. :: <- = => @ \ | ~ ← → ∀ ∷ ★
  33.  
  34. [settings]
  35. # default extension used when saving files
  36. extension=fs
  37.  
  38. # the following characters are these which a "word" can contains, see documentation
  39. #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
  40.  
  41. # single comments, like # in this file
  42. comment_single=//
  43. # multiline comments
  44. comment_open=(*
  45. comment_close=*)
  46.  
  47. # set to false if a comment character/string should start at column 0 of a line, true uses any
  48. # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
  49. #command_example();
  50. # setting to false would generate this
  51. # command_example();
  52. # This setting works only for single line comments
  53. comment_use_indent=true
  54.  
  55. # context action command (please see Geany's main documentation for details)
  56. context_action_cmd=
  57.  
  58. [indentation]
  59. #width=4
  60. # 0 is spaces, 1 is tabs, 2 is tab & spaces
  61. #type=1
  62.  
  63. [build_settings]
  64. # %f will be replaced by the complete filename
  65. # %e will be replaced by the filename without extension
  66. # (use only one of it at one time)
  67. compiler=fsc "%f"
  68. run_cmd="%e"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement