Y
Hacker News
new
|
ask
|
show
|
jobs
by
Spqa
1916 days ago
Sublime and VS code might try to parse it for syntax highlighting, notepad simply read the text.
2 comments
scaladev
1916 days ago
vim does this too. If it hangs on you when opening a very large file, don't hesitate to press Ctrl+C. It does not terminate the whole process, but aborts the syntax highlighting, and the editor becomes very snappy.
link
suprfsat
1916 days ago
To proactively turn off syntax highlighting, bracket matching, and so forth, I use
alias vi='vim -u NONE'
which makes it skip vimrc.
link
IshKebab
1916 days ago
VSCode disables syntax highlighting on very large files.
link