You are here

ckeditor_codemirror.schema.yml in CKEditor CodeMirror 8.2

Same filename and directory in other branches
  1. 8 config/schema/ckeditor_codemirror.schema.yml
config/schema/ckeditor_codemirror.schema.yml

File

config/schema/ckeditor_codemirror.schema.yml
View source
  1. # Schema for the configuration files of the CKEditor CodeMirror module.
  2. ckeditor.plugin.codemirror:
  3. type: config_object
  4. label: 'CKEditor CodeMirror settings'
  5. mapping:
  6. enable:
  7. type: boolean
  8. label: 'Enabled'
  9. mode:
  10. type: string
  11. label: 'Mode'
  12. theme:
  13. type: string
  14. label: 'Theme'
  15. startupMode:
  16. type: string
  17. label: 'Editor startup mode.'
  18. options:
  19. type: config_object
  20. label: 'CodeMirror options'
  21. mapping:
  22. lineNumbers:
  23. type: boolean
  24. label: 'Show line numbers.'
  25. lineWrapping:
  26. type: boolean
  27. label: 'Enable line wrapping.'
  28. matchBrackets:
  29. type: boolean
  30. label: 'Highlight matching brackets.'
  31. autoCloseTags:
  32. type: boolean
  33. label: 'Close tags automatically.'
  34. autoCloseBrackets:
  35. type: boolean
  36. label: 'Close brackets automatically.'
  37. enableSearchTools:
  38. type: boolean
  39. label: 'Enable search tools.'
  40. enableCodeFolding:
  41. type: boolean
  42. label: 'Enable code folding.'
  43. enableCodeFormatting:
  44. type: boolean
  45. label: 'Enable code formatting.'
  46. autoFormatOnStart:
  47. type: boolean
  48. label: 'Format code on start.'
  49. autoFormatOnModeChange:
  50. type: boolean
  51. label: 'Format code each time source is opened.'
  52. autoFormatOnUncomment:
  53. type: boolean
  54. label: 'Format code when a line is uncommented.'