Restore preference for large CSV files #165
-
When opening a very large CSV file in VS Code, a dialogue appears at the bottom-right asking if I want to disable features or force them to run. I clicked on disable with the option to not ask me again. How can I re-enable this prompt, or find another way to manually force RBQL to process very large CSV files? I looked int he extension settings and can't find the option. Thanks for your work - this is a fantastic tool! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi there, and thanks for the feedback! Unfortunately, very large files is an unsolvable problem as of now, because VSCode just disables all extension features if the files are bigger than a certain size. There might be also a "mid-range" of file sizes that are fixable with |
Beta Was this translation helpful? Give feedback.
Hi there, and thanks for the feedback!
Short answer: you can try to adjust
"editor.largeFileOptimizations": false
setting, see: https://stackoverflow.com/questions/53625687/what-is-the-largest-filesize-supported-by-vs-code-syntax-highlightingUnfortunately, very large files is an unsolvable problem as of now, because VSCode just disables all extension features if the files are bigger than a certain size. There might be also a "mid-range" of file sizes that are fixable with
editor.largeFileOptimizations
. Another option is to run standalone rbql cli command viapip install rbql
if you want to use Python version ornpm install rbql
for JS version https://pypi.org/project/rbql/ https://www.np…