Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
ochafik committed Dec 23, 2024
1 parent c155c15 commit 1eef3dc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"rollup-plugin-css": "^1.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-watch": "^3.2.2",
"serve": "^14.2.0",
"style-loader": "^3.3.3",
Expand Down
18 changes: 9 additions & 9 deletions src/language/openscad-completions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,15 +216,15 @@ export async function buildOpenSCADCompletionItemProvider(fs: FS, workingDir: st
const isFolder = !file.endsWith('.scad');
const completion = file + (isFolder ? '' : '>\n'); // don't append '/' as it's a useful trigger char

console.log(JSON.stringify({
prefix,
folder,
filePrefix,
folderPrefix,
// files,
completion,
file,
}, null, 2));
// console.log(JSON.stringify({
// prefix,
// folder,
// filePrefix,
// folderPrefix,
// // files,
// completion,
// file,
// }, null, 2));

suggestions.push({
label: file,
Expand Down

0 comments on commit 1eef3dc

Please sign in to comment.