Merge pull request #103 from brondsem/getstate_code

Add getState() support for code
pull/107/head
Wes Cossick 9 years ago
commit 32cab53986

@ -88,6 +88,8 @@ function getState(cm, pos) {
ret.quote = true;
} else if(data === 'strikethrough') {
ret.strikethrough = true;
} else if(data === 'comment') {
ret.code = true;
}
}
return ret;

Loading…
Cancel
Save