Last active
December 20, 2015 14:29
-
-
Save rev22/6146899 to your computer and use it in GitHub Desktop.
Visual aid for CamelCase code in the ACE Editor; this can be compiled into a Bookmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2013 Michele Bini; MIT license | |
ace = window.ace ? window.__ace_shadowed__ | |
if require = ace?.require | |
require ["ace/layer/text"], ({Text}) -> | |
orig = Text.prototype.$renderToken | |
patched = do ( | |
rgx = new RegExp "[a-z][0-9]*[A-Z]", "g" | |
) -> (builder, col, token, value) -> | |
if match = rgx.exec value | |
type = token.type | |
type_c = type + ".camel" | |
p = 0 | |
loop | |
q = rgx.lastIndex - 1 | |
s = value.substring(p, q) | |
col = orig.call @, builder, col, { type, value: s }, s | |
s = value.substring(q, p = q + 1) | |
col = orig.call @, builder, col, { type: type_c, value: s }, s | |
break unless match = rgx.exec value | |
s = value.substring(p) | |
orig.call @, builder, col, { type, value: s }, s | |
else | |
orig.apply @, arguments | |
Text.prototype.$renderToken = patched | |
unless document.getElementById "camelcapcss" | |
x = document.createElement "style" | |
x.id = "camelcapcss" | |
x.innerHTML = ".ace_camel { font-weight: bold; }" | |
document.head.appendChild x | |
for x in document.getElementsByClassName("ace_editor") | |
if x = x?.env?.editor | |
if x = x?.renderer | |
console.log "Attempting to reset mode" | |
x.updateFull() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment