##// END OF EJS Templates
fix tooltip token regex for single-character names...
MinRK -
Show More
@@ -197,7 +197,7 b' var IPython = (function (IPython) {'
197 }
197 }
198
198
199 // easy access for julia monkey patching.
199 // easy access for julia monkey patching.
200 Tooltip.last_token_re = /[a-z_][0-9a-z._]+$/gi;
200 Tooltip.last_token_re = /[a-z_][0-9a-z._]*$/gi;
201
201
202 Tooltip.prototype.extract_oir_token = function(line){
202 Tooltip.prototype.extract_oir_token = function(line){
203 // use internally just to make the request to the kernel
203 // use internally just to make the request to the kernel
General Comments 0
You need to be logged in to leave comments. Login now