I just upgraded to the latest version of tinymce and discovered that when I update content, the content is messed up with <br> tags. I've tried a couple of configuration settings including:
convert_newlines_to_brs:false
force_p_newlines: true
force_br_newlines : false
all to no avail.
Has anyone else experienced and solved this problem?
Hmm, in this case i fear i can't help you directly. I am using 3.3.9 and i will switch to 3.4.x if this is a stable version (actually it is not). I suggest you switch to 3.3.x .
Related
This suddenly happened after I created a new file while working on a project. Almost all characters are simply white text (except for brackets, because I have bracket pair colorization enabled)
I already tried resetting my configurations, checked my configurations (both globally and in my workspace), and tried this extension that offers an alternative syntax highlighting (which worked, but I would prefer using the Visual Studio Code one).
I think this was caused by the extension called JavaScript and TypeScript Nightly. This was causing the syntax highlighting for .js and .ts files (.jsx and .tsx too). This was more of a bug with the latest version (currently 1.73.1).
You can disable the extension to enable the syntax highlighting.
This extension has now been updated and this issue is fixed.
What user Haneen said was correct, but instead of disabling it, you can install an old version that works just fine.
Click the cog on the bottom right → 'Install Another Version' → select an older version.
Cog at bottom right
Yes, this is exactly caused by the JavaScript and TypeScript Nightly extension.
You can disable or install another version (I recommend installing the prior version since the current version has a bug).
I am currently using the version which was released 2022-11-13.
The current version (v5.0.20221116) for JavaScript and TypeScript Nightly seems to be breaking the syntax highlighting. Downgrading to a previous version might resolve this issue.
This was resolved in v5.0.20221117 however.
Also, I deleted this JavaScript and TypeScript Nightly package, and now it works fine for me.
The module on the marketplace: JavaScript and TypeScript Nightly
I think this was caused by the extension called JavaScript and TypeScript Nightly. This was causing the syntax highlighting for .js and .ts files This was more of a bug with the latest version
As others mentioned, the two latest versions are causing issue for me, but 5.20221115 is working for me.
It was fixed with the latest update of JavaScript and TypeScript Nightly.
I can't make auto complete work for .tf (and related) files with VSCode on my MacBook Pro.
Steps I took were:
Installed the HashiCorp Terraform plugin
Installed Terraform Language Server brew install terraform-ls
Got the path:
: which terraform-ls
/usr/local/bin/terraform-ls
And finally configured VSCode:
"terraform.languageServer": {
"external": true,
"pathToBinary": "/usr/local/bin/terraform-ls",
"args": [
"serve"
],
"maxNumberOfProblems": 100,
"trace.server": "off"
}
I just get the auto completion for aws items which are already in this file:
What am I missing here?
I wish those things were plug and play :(
This is a bug which has been acknowledged by the developers and is being fixed here:
https://github.com/hashicorp/vscode-terraform/issues/900#issuecomment-1011088885
If you still have this issue, Please try the solution which worked for me-
I had got the same problem in VS code when I installed the Terraform (Anton Kulikov) extension and the version was v0.2.2. I tried many things to make my autocomplete work ,but later when I found out the solution that if you degrade your version to v0.2.1 it works.
Hope this solution also works for you- Cheers
I worked out a workaround for this bug myself after experiencing it too. You might notice that aws_ and name are highlighted. If you hit Escape on your keyboard, it'll cancel the selection and then autosuggestions will begin working again. Not sure of the cause, but figured out this "fix" by accident.
So i updated from Netbeans 8.0.2 to 8.2 and now i have this very annoying bug : when i move the cursor down, the scrollbar won't auto scroll, so the cursor simply disappears ! I need to manually scroll to get the cursor visible again.
I'm on Mac Os 10.13.4. Anyone had this bug and could fix it ? Otherwise i'll have downgrade to get my things done properly again.
Thanks !
I don't know about MacOS but I have noticed that behavior on Linux too. It happens every time I type an accented character (e.g. á, é).
The solution I've found is adding env XMODIFIERS="" to the beginning of the command line in the .desktop file (the default is XMODIFIERS=#im=ibus on Ubuntu 20.04). Or simply starting it from the command line as XMODIFIERS="" netbeans
I'm posting this a little late because it's becoming increasingly difficult to find old versions of NetBeans after they moved from Oracle to Apache. So if you are stuck with a specific version and can't downgrade/upgrade, this answer might be helpful.
I checked NetBeans bugs and don't see an exact match for your problem, but there are plenty of similar ones. Note that bugs marked as RESOLVED haven't necessarily been applied to the released version of 8.2.
However, you could use a DEV version of NetBeans that would have the fixes applied, and as an added bonus you could also use JDK9 which you can't do on 8.2. That approach might be preferable to downgrading. Also note that the DEV version of NB could run concurrently with 8.2.
I know that this is still a release candidate so it's possible that this functionality doesn't yet exist, but there is a setting for it in the Default Settings:
// Specifies which version of ECMA-Script is used.
"javascript.validate.target": "ES5"
I tried overwriting this in the User Settings by entering:
"javascript.validate.target": "ES6"
but this didn't work. Has anyone had any success with this?
ES6 is not yet supported by the JavaScript language service in VSCode.
You can vote for it, though!
Nowadays this is handled in jshint options, so you should set jshint.options.esversion to 6.
I am currently having an issue with my plugin not being displayed in the plugin list within admin.
When I run this straight from VS2010 is works perfectly. I have checked and the description file appears to be OK and the plugin is present in the plugins folder once deployed (using the deploy.bat).
I have noticed there is a massive list of DLLs being deployed with the plugin but don't think that is the issue (although it would be nice to tidy that up to - all references are set to do not copy)
Are there any other things I could be missing? I am fairly new to development and have checked al the things that seem to be obvious to me.
I have already read and checked the following:
http://www.nopcommerce.com/boards/t/13404/plugin-not-showhing-up-in-plugin-list.aspx
http://www.nopcommerce.com/boards/t/14259/plugin-not-copied-to-deploy.aspx
Any assistance will be massively appreciated!
Have you properly documented yor plugin code?
<?php<br>
/*<br>
Plugin Name: Name Of The Plugin<br>
Plugin URI: h ttp://URI_Of_Page_Describing_Plugin_and_Updates<br>
Description: A brief description of the Plugin.<br>
Version: The Plugin's Version Number, e.g.: 1.0<br>
Author: Name Of The Plugin Author<br>
Author URI: h ttp://URI_Of_The_Plugin_Author<br>
License: A "Slug" license name e.g. GPL2<br>
*/<br>
?><br>
(from wpcodex)
This ended up being the publishing to different IIS site without realising so it was updating the DLL in the wrong folder...