I've been trying for some time to get SublimeLinter to start, but don't really see it do anything.
I downloaded it here: https://github.com/SublimeLinter/SublimeLinter
Installed with Sublime Package Control http://wbond.net/sublime_packages/package_control
It added SublimeLinter under Sublime Text 2 > Preferences > Package Settings
It shows me the README.md and it gives me a Package Control message where it says that SublimeLinter by default runs in the background.
But when I try typing in some syntax errors it doesn't say a word or hint that something is wrong. Nor when I save.
What's up? Where is the on-switch that I missed?
Thanks
I encountered this error on Linux when installing from package manager (old version). The solution was to download the last version from Github and manually copy it in packages folder.
You'll see that the size of the folder containing indexes for the language scanned (PHP in my case) is incrementing.
Related
I am trying to run JavaScript code in Atom with Script package. It can run Python successfully, but with JS files it gives the following error message:
The system cannot find the file specified.
I had the same problem while analyzing some JavaScript code of an extension for Chrome.
Using: Windows 7 64Bit Atom:1.24.0 x64
Since I my coding Folder is somewhere else I copied the files in that folder. Let’s say:
C:\Users\USER\CodingStuff\
then it started working. I have also tried adding the extension file the Sources via:
1 - CTRL+SHIFT+I
2- Right click -> add folder to workspace
But that did not work.
Side note: node.js has to be installed on the system.
Hope it helps.
I know I am late, but if any other faces the same issue, my answer will be helpful.
Assumed that you want to run your javascript outside browser and you installed node.js.
There is a bug in "script" package of Atom. Check ur path of the script if there are spaces then this leads to the aforementioned error. Work around is remove spaces.
for ex:
E:\Java script\trial.js
change to:
E:\Javascript\trial.js
I have a Coffeescript project that I'd like to edit using Eclipse.
Many people suggested that I should install the Nodeclipse Coffeescript Viewer module in order to have colors and highlights.
I did install the module but I'm still getting a plain black and white file.
What should I do?
Thanks!
PS : I have Eclipse Luna under Win7.
Seems like you have not installed well, reinstall
http://marketplace.eclipse.org/content/nodeclipse-coffeescript-viewer-editor-eclipse-431
You would get editor for .coffee files by default.
Also Nodeclipse EditBox helps a lot to see indentation
If this is not a new file, right-click on it and look in the "Open With..." menu. Eclipse will reopen the same editor you used the last time for a given file.
I downloaded Sublime Text 3 on my 14.04 Ubuntu machine, installed Package Control, and installed the Dart Plugin. I also have the dart-sdk that I downloaded from dartlang.
I went into the user preferences file in Sublime Text and added
"dart_sdk_path": "/home/arnold/Documents/dart/dart-sdk",
For good measure, I also tried
"dartsdk_path": "/home/arnold/Documents/dart/dart-sdk",
"dart-sdk_path": "/home/arnold/Documents/dart/dart-sdk",
When I try to compile to JavaScript using dart2js, with Ctrl+Shift+P and selecting Build: Dart: dart2js, I get the following error:
[Errno 2] No such file or directory: 'dart2js'
[cmd: ['dart2js', '--minify', '-o/home/arnold/Documents/ECE161/Python/Flask/templates/dart.html.js', '/home/arnold/Documents/ECE161/Python/Flask/templates/dart.html']]
[dir: /home/arnold/Documents/ECE161/Python/Flask]
[path: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games]
[Finished]
I've already told Sublime Text where the sdk is, right? So why is it pointing to
[path: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games]
and how can I fix this, if that's the issue.
Ensure the PATH environment variable includes the path to the dart-sdk/bin directory. This should be enough if you have only one Dart version installed at one time.
I am trying to install JSLintMate http://rondevera.github.io/jslintmate/ for my text mate. Downloaded the bundle from their website and it suggested that it will get install automatically.
On unzipping it is asking for file encoding format and i am selecting default UTF-8
But after running the installation bundle I am getting an error
The bundle “JavaScript JSLintMate 1.4.tmbundle” does not contain the
required “info.plist” file (or that file is corrupt) and can therefore
not be installed.
I searched on the web regarding this but not able to find the solution.
Text-Mate Version: 1.5.11
OSX: Maverics 10.9
JSLintMate: 1.4
Is there anything wrong from my side or some additional step is required to make it work? Also please recommend me some alternatives since its not working.
Ok finally its working.The problem is with the unarchiver utility only. If I use default archiver utility instead,it's perfectly working fine https://github.com/rondevera/jslintmate/issues/30
I just installed netbeans 7.0.1 in ubuntu 12.04, and there NO JAVASCRIPT support whatsoever. I am not getting any errors, but my .js files just appear as regular text files with no syntax highlighting.
My situation is different from this post because when I go to Tools -> Options -> Misc -> Files, under "Associated File Type (MIME)" i don't have an option for "text/javascript".
Also in my previous installation of netbeans, I could right-click on the "Source Files" folder of my project, select New -> other and I could create a new .JS file like this. But now there is no option for .js files. Only PHP (since i installed the PHP plugin), XML, SQL, CSS and a handful of others.
Another thing, I often embed javascript in .php files. My embedded js just shows up as plain text, no syntax highlighting.
I also checked for additional plugins for JS, but nothing jumped out at me as being the solution. Does anyone know how I can enable the JS file recognition and syntax highlighting?
Thanks!
** UPDATE **
This installation is acting very weird (when editing text, pressing enter has no reaction, no line return, nothing) so I will try re-installing, will update with results.
** UPDATE 2 **
Installed 7.1 for linux from the netbeans website and everything is working well. It must have been a faulty installation from the Ubuntu software center.
I was using Netbeans 7.0.1 on Ubuntu 12.04 64-bit. Installing Netbeans 7.1.2 fixed my color/syntax problems.
For those who need to re-install, here is the download page: http://netbeans.org/downloads/index.html
Be sure to check Tools -> Options -> Misc -> Files to ensure that everything looks right.
P.S. #jeffery_the_wind Thank you for your update! This had been driving me crazy today, and I googled for hours and couldn't find the solution.