@codemirror/autocomplete 6.0.3 → 6.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +0 -1
- package/dist/index.js +0 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -1662,7 +1662,6 @@ function nodeStart(state, pos) {
|
|
|
1662
1662
|
return tree.parent && tree.from == pos;
|
|
1663
1663
|
}
|
|
1664
1664
|
function probablyInString(state, pos, quoteToken) {
|
|
1665
|
-
console.log('check pos', pos);
|
|
1666
1665
|
let node = language.syntaxTree(state).resolveInner(pos, -1);
|
|
1667
1666
|
for (let i = 0; i < 5; i++) {
|
|
1668
1667
|
if (state.sliceDoc(node.from, node.from + quoteToken.length) == quoteToken) {
|
package/dist/index.js
CHANGED
|
@@ -1658,7 +1658,6 @@ function nodeStart(state, pos) {
|
|
|
1658
1658
|
return tree.parent && tree.from == pos;
|
|
1659
1659
|
}
|
|
1660
1660
|
function probablyInString(state, pos, quoteToken) {
|
|
1661
|
-
console.log('check pos', pos);
|
|
1662
1661
|
let node = syntaxTree(state).resolveInner(pos, -1);
|
|
1663
1662
|
for (let i = 0; i < 5; i++) {
|
|
1664
1663
|
if (state.sliceDoc(node.from, node.from + quoteToken.length) == quoteToken) {
|