I downloaded the master branch about 24 hours ago. Is there a setting that I need to change to make it case insensitive? My editor is configured as follows:
<script src="../Scripts/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script>
//Setup ace editor. Must be located after the editor on the page
var editor = ace.edit('editor');
editor.setTheme("ace/theme/chrome");
editor.getSession().setMode("ace/mode/javascript");
editor.getSession().setUseWrapMode(true);
editor.getSession().setWrapLimitRange(null, null);
editor.setBehavioursEnabled(true);//auto pairing of quotes & brackets
editor.setShowPrintMargin(false);
editor.session.setUseSoftTabs(true);//use soft tabs (likely the default)
ace.config.loadModule('ace/ext/language_tools', function () {
editor.setOptions({
enableBasicAutocompletion: true,
enableSnippets: true
})
});
editor.commands.addCommand({
name: 'showKeyboardShortcuts',
bindKey: {win: "Ctrl-Alt-h", mac: "Command-Alt-h"},
exec: function(editor) {
ace.config.loadModule("ace/ext/keybinding_menu", function(module) {
module.init(editor);
editor.showKeyboardShortcuts()
})
}
});
//Add custom snippets
ace.config.loadModule('ace/snippets/snippets', function () {
var snippetManager = ace.require('ace/snippets').snippetManager;
ace.config.loadModule('ace/snippets/javascript', function(m) {
if (m) {
m.snippets.push({
content: '${1:test}.This is custom snippet text!',
tabTrigger: 'testCustomSnippet'
});
snippetManager.register(m.snippets, m.scope);
}
});
});