##// END OF EJS Templates
allow number in tokens
Matthias BUSSONNIER -
Show More
@@ -40,7 +40,7 b' var IPython = (function(IPython ) {'
40 40 this.cell = cell;
41 41 this.editor = cell.code_mirror;
42 42 // if last caractere before cursor is not in this, we stop completing
43 this.reg = /[A-Za-z.]/;
43 this.reg = /[0-9a-z.]/i; // casse insensitive
44 44 }
45 45
46 46 Completer.prototype.kernelCompletionRequest = function(){
General Comments 0
You need to be logged in to leave comments. Login now