Can't enable CheckBounce plugin for Sublime Text 2 - plugins

I try to configure Sublime Text 2 on windows 7
I installed CheckBounce plugin from: followed link
but I get "Enable Spellcheck" disabled.
Anyone knows how to fix it?
[Edit]
I have default configuration = user configuration
PackageControll.sublimesettings - user:
{
"installed_packages":
[
"JsFormat",
"Package Control",
"SublimeLinter",
"SyntaxChecker"
]
}

Related

SonarLint connected mode is not working in VS code

I have Sonar Lint version as 1.15.0 and Vs Code version as 1.43.I have given the server setting as
"sonarlint.connectedMode.connections.sonarqube": [
{
"serverUrl":"xx",//Server url
"token": "xx"//Token generated from SonarQube
}
],
This configuration is given in the user setting of Vscode.
In the work space setting.json have given the following code,
sonarlint.connectedMode.project": {
"connectionId": "mySonar",
"projectKey": "my-dream-app"
}
The problem is Sonar Lint is not getting connected with the Sonarqube server.Could any one help me out why this configuration is not working .

V S code V1.31 emmet intellisense not working with Python/Django Extensions

I installed Visual Studio Code 1.31.0 recently and also installed the python and django extensions. When I'm tying to create new HTML file, and typing "html" it was not showing with the emmet responses and after quite a bit of struggle, when I uninstalled python and django extensions, things are back to normal.
Any help on how to get emmet working with python and django extensions installed?
Django extension for Visual Studio Code
as explained in the descriptionof the above link, you will have to enter the following code in your settings file.
"files.associations": {
"**/templates/*.html": "django-html",
"**/templates/*": "django-txt",
"**/requirements{/**,*}.{txt,in}": "pip-requirements"},
"emmet.includeLanguages": {"django-html": "html"},
Open the settings.json as below path:
%APPDATA%\Code\User\settings.json
Edit the file as below:
{
"files.associations": {
"**/*.html": "html",
"**/templates/**/*.html": "django-html",
"**/templates/**/*": "django-txt",
"**/requirements{/**,*}.{txt,in}": "pip-requirements"
},
"workbench.editorAssociations": [
{
"viewType": "jupyter.notebook.ipynb",
"filenamePattern": "*.ipynb"
}
],
"emmet.includeLanguages": {
"django-html": "html"
},
"emmet.excludeLanguages": [
"markdown"
]
}
its simple just go to settings-> Emmets and in emmets you will find include library option just click on that in language write django-html and in value add html
BOOM IT IS DONE.
On vs code, open settings, go to => Extensions => EMMET => scroll down and locate on the ( INCLUDE LANGUAGES ) => click on (ADD ITEM ). the first input which is the ( KEY ) type django-html and the second input which is the ( VALUE ), type html

Can text-shadow be removed from vscode?

In vscode under Centos linux 7.4 there are text-shadows in some interface elements. Anyone know how to remove the text-shadow?
I tried adding the following to the user settings css this but it does not work:
"*" : {
"text-shadow": 0
},

Eclipse IDE Tern ES6 Validation & Auto-Complete

I'm having issues setting up validation via Tern with ESLint. I disabled the internal parsing as shown, http://tools.jboss.org/documentation/whatsnew/jbosstools/4.3.0.Final.html#javascript-development-tools-improvements, and I enabled ESLint. In the project properties javascript > Tern > Validation > ESLint I specified the .eslintrc config file to use (also tried eslint.json).
I can run ESLint from the command line and it gives me all the nice errors to fix, but I don't know why it's not work in Eclipse via Tern. Also I enabled the jQ library, but it's not giving me auto-complete either. I'm not sure if there's some other configuration I'm missing for Tern or not.
I found that it expects only the rules in the configuration.
Instead of:
{
"env": { ... },
"extends": "eslint:recommended",
"parserOptions": { ... },
"rules": {
"no-trailing-spaces" : "error"
}
}
It's just looking for:
{
"no-trailing-spaces" : "error"
}

How to add a plugin to eclipse via cookbook using chef-solo

I have chef-solo installed on ubuntu(12.04). I have been able to successfully install eclipse using the cookbook provided in the following site: https://github.com/geocent-cookbooks/eclipse.
Now i wish to add the pydev plugin to this using chef-solo. Can someone help me on how i can do this. Do i need a new cookbook (if yes then where can i find the cookbook) or is some editing required in the existing eclipse cookbook(if yes then what is it)?
I am new to chef. Please help
Thank you
cookbook delivers a method to install the eclipse plugins.
default ['Eclipse'] ['plugins'] - list of repositories and install plugins to Automatically With This eclipse deployment
for pydev:
"default_attributes": {
"eclipse": {
"plugins": [{"http://pydev.org/updates" => "org.python.pydev.feature.feature.group"}]
}
}
}
check this issues (certificate error)
http://sourceforge.net/p/pydev/bugs/1244/
I guess installing the certificate should work correctly.
http://pydev.org/manual_101_install.html#pydev-certificate
you would have to adapt this code to automatically add the certificate.
https://gist.github.com/lusis/2203083
Another option is to adapt the cookbook for install liclipse (eclipse + PyDev)
http://brainwy.github.io/liclipse/
Sorry for my English.
Best regards
I ran the eclipse cookbook in a vm with ubuntu 12.04 and install pydev without problems, attached to the chef-solo json file.
{
"java": {
"jdk_version": "7"
},
"eclipse": {
"plugins": [ {"http://pydev.org/updates": "org.python.pydev.feature.feature.group"} ]
},
"run_list": [
"recipe[eclipse::default]"
]
}
If it does not work, attached the json file and debug log of chef run
Best Regards