6

I am trying to include CodeMirror Plugin but am getting this error Uncaught ReferenceError: CodeMirror is not defined

My HTML CODE is here

http://pastie.org/4673008

Can anyone help ??

Thanks in advance..

user1159517
  • 5,390
  • 8
  • 30
  • 47

2 Answers2

9

You're loading the clike module before CodeMirror itself.

Change the order in your HTML head from this:

<script type="text/javascript" src="../CodeMirror-2.33/mode/clike/clike.js"></script>
<script type="text/javascript" src="../CodeMirror-2.33/lib/codemirror.js"></script>
<script type="text/javascript" src="../CodeMirror-2.33/mode/javascript/javascript.js"></script>

To this:

<script type="text/javascript" src="../CodeMirror-2.33/lib/codemirror.js"></script>
<script type="text/javascript" src="../CodeMirror-2.33/mode/clike/clike.js"></script>
<script type="text/javascript" src="../CodeMirror-2.33/mode/javascript/javascript.js"></script>
Savjee
  • 166
  • 1
  • 3
  • Thanks for your response. I am facing similar issue and I have posted it here: https://stackoverflow.com/q/69430941/7584240 If you get a chance can you please have a look and provide some resolution. – BATMAN_2008 Oct 04 '21 at 05:21
0

ngx-codemirror SQL high-late is not working, deeper I found the to the code mirror tag the class to high-late syntax cm-default, cm-link, cm-keyword these class is not appending. config used : public queryConfig = { lineNumbers: true, theme: 'twilight', mode: 'text/x-sql', lineWrapping : true, autoFocus: true };

The main.ts file added the imports below:

main.ts scripts

The angularcli.json file added the scripts below:

angularcli.json scripts

Yaser Darzi
  • 1,480
  • 12
  • 24
  • issue resolved by adding the "matchBrackets:true" to the query config like below, queryConfig = { lineNumbers: true, theme: 'twilight', matchBrackets:true, mode: 'text/x-sql', lineWrapping : true, autoFocus: true }; – Chetan Kumar Nov 06 '19 at 10:53
  • Thanks for your response. I am facing a similar issue and I have posted it here: https://stackoverflow.com/q/69430941/7584240 If you get a chance can you please have a look and provide some resolution. – BATMAN_2008 Oct 04 '21 at 05:21