##// END OF EJS Templates
Allow path completion on notebook....
Matthias BUSSONNIER -
Show More
@@ -104,7 +104,7 b' var IPython = (function (IPython) {'
104 104
105 105 // we need to check that we are still on a word boundary
106 106 // because while typing the completer is still reinvoking itself
107 if (!/[0-9a-z._]/i.test(pre_cursor)) {
107 if (!/[0-9a-z._/\\:~-]/i.test(pre_cursor)) {
108 108 this.close();
109 109 return;
110 110 }
General Comments 0
You need to be logged in to leave comments. Login now