-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed compilation issues #20
base: master
Are you sure you want to change the base?
Conversation
Old method needed a newline character to stop, resulting in an endless loop when compiling a one-line file
The old method triggered the LESS compilation on "core:save" which happens before the new file content is actually written on the disk. With the "onDidSave", you don't need to save your file twice to get your changes compiled.
I am happy to transfer ownership. |
Two things:
|
'core:save': => @render() | ||
atom.workspace.observeTextEditors (editor) => | ||
editor.onDidSave (event) => | ||
@render event.path | ||
|
||
deactivate: -> | ||
@subscriptions.dispose() | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should probably get rid of this too
fs.readFile filepath, (err, fileData) => | ||
if err != null | ||
callback err | ||
callback null, fileData.toString().match /.*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The point of this file is to read the first line of a file in the most efficient way possible. So instead of reading in the entire file, which could be very large, we instead read as few bytes as possible while looking for the the newline separator. We then pass the first line to the callback.
Your change is reading the entire file, and is actually passing a RegEx Match object, which is not what the callback is expecting, as far as I know.
My Atom kept freezing each time I created a new .less file so I investigated and fixed 2 bugs.
Also I've seen that you don't maintain the code anymore and you may not want to test my changes. If you agree I can take the ownership of the code and plugin.