shane0 / shane0.github.io

shane null's github pages
https://shane0.github.io/
MIT License
1 stars 0 forks source link

codemirror #9

Open shane0 opened 1 year ago

shane0 commented 1 year ago
npm install codemirror
npm install codemirror/mode/javascript
npm install codemirror/mode/vim
<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" href="node_modules/codemirror/lib/codemirror.css">
  <link rel="stylesheet" href="node_modules/codemirror/theme/material.css">
</head>
<body>
  <textarea id="code"></textarea>

  <script src="node_modules/codemirror/lib/codemirror.js"></script>
  <script src="node_modules/codemirror/mode/javascript/javascript.js"></script>
  <script src="node_modules/codemirror/keymap/vim.js"></script>

  <script>
    var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
      mode: "javascript",
      theme: "material",
      keyMap: "vim",
      lineNumbers: true,
      tabSize: 2,
      indentWithTabs: true
    });
  </script>
</body>
</html>