fpini.inc 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {$ifdef Delphi}
  2. const fpini : array[0..2] of string[240]=(
  3. {$else Delphi}
  4. const fpini : array[0..2,1..240] of char=(
  5. {$endif Delphi}
  6. '[Compile]'#013#010+
  7. 'CompileMode=DEBUG'#013#010+
  8. #013#010+
  9. '[Editor]'#013#010+
  10. 'DefaultTabSize=8'#013#010+
  11. 'DefaultFlags=20599'#013#010+
  12. 'DefaultSaveExt=.pas'#013#010+
  13. 'DefaultIndentSize=1'#013#010+
  14. #013#010+
  15. '[Highlight]'#013#010+
  16. 'Exts="*.pas;*.pp;*.inc"'#013#010+
  17. 'NeedsTabs="make*;make*.*"'#013#010+
  18. #013#010+
  19. '[SourcePath]'#013#010+
  20. 'SourceList=""'#013#010+
  21. #013#010+
  22. '[Mouse]'#013#010+
  23. 'DoubleDel','ay=8'#013#010+
  24. 'ReverseButtons=0'#013#010+
  25. 'AltClickAction=6'#013#010+
  26. 'CtrlClickAction=1'#013#010+
  27. #013#010+
  28. '[Search]'#013#010+
  29. 'FindFlags=4'#013#010+
  30. #013#010+
  31. '[Breakpoints]'#013#010+
  32. 'Count=0'#013#010+
  33. #013#010+
  34. '[Watches]'#013#010+
  35. 'Count=0'#013#010+
  36. #013#010+
  37. '[Preferences]'#013#010+
  38. 'DesktopFileFlags=209'#013#010+
  39. 'CenterCurrentLineWhileDebugging=1'#013#010+
  40. 'AutoSaveFlags=7'#013#010+
  41. 'MiscOptions=6'#013#010,
  42. 'DesktopLocation=1'#013#010+
  43. #013#010+
  44. '[Misc]'#013#010+
  45. 'ShowReadme=1'#013#010+
  46. #013#010+
  47. '[Files]'#013#010+
  48. 'OpenExts="*.pas;*.pp;*.inc"'#013#010
  49. );