Skip to content

Instantly share code, notes, and snippets.

@theredstapler
Created July 4, 2016 11:06
Show Gist options
  • Save theredstapler/282c2afffcc8f166d5f9dd91047f98c5 to your computer and use it in GitHub Desktop.
Save theredstapler/282c2afffcc8f166d5f9dd91047f98c5 to your computer and use it in GitHub Desktop.
<!doctype html>
<head>
<script src="lib/codemirror.js"></script>
<link rel="stylesheet" href="lib/codemirror.css">
<script src="mode/css/css.js"></script>
<script src="addon/hint/show-hint.js"></script>
<script src="addon/hint/css-hint.js"></script>
<link rel="stylesheet" href="addon/hint/show-hint.css">
<style>
body {
background-color: #eee;
}
</style>
</head>
<body>
<div id="codeeditor"></div>
<script>
var editor = CodeMirror(document.getElementById("codeeditor"), {
value: "#test {\n\tposition: absolute;\n\twidth: auto;\n\theight: 50px;\n}",
mode: "css",
tabSize: 5,
lineNumbers: true,
firstLineNumber: 50,
extraKeys: {"Ctrl-Space": "autocomplete"}
});
</script>
</body>
</html>
@jbalta
Copy link

jbalta commented Jul 30, 2016

Hello, I followed the steps and even copy your code but does not the AutoComplete.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment