How can I import, lets say 1000 lines, from a CSV
file into Sublime?
I cannot find any settings in Sublime that let me perform this action. I do not want to import the whole file, since it will take a considerable amount of time.
How can I import, lets say 1000 lines, from a CSV
file into Sublime?
I cannot find any settings in Sublime that let me perform this action. I do not want to import the whole file, since it will take a considerable amount of time.
This is not possible, SublimeText can't open 'half' a file.
I've faced the same issue, ended up with splitting the large file into multiple files, and opening the one I needed;
# Split large file in small files containing 10000 lines
split -l 10000 mylargefile.csv