Formatting ColdFusion code with Visual Studio Code - coldfusion

is anyone using Visual Studio Code? I'm trying to format the code with the command ALT+SHIFT+F and after that it says: "There is no formatter for 'cfml' files installed." How can we format the ColdFusion code in Visual Studio Code?

Related

Open a vdproj file with VS Community 2017?

I retrieved a C++ VS project from 2011 and it has a Install-win32.vdproj I guess it has to be the file I need to open in order to build the project.
Unfortunately Visual Studio 2017 seems not to recognize this kind of file. Is there any ways to interpret it or convert it?
For VS2017, use the Microsoft Visual Studio Installer Projects. Download link is below. Be sure to close Visual Studio before running the installer:
https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam.MicrosoftVisualStudio2017InstallerProjects

Compiling STXXL on visual studio 2015

I am trying to use STXXL map in my c++ code in visual studio 2015.
I followed the instruction on http://stxxl.sourceforge.net/tags/master/install_windows.html'
and when I try to build the project in visual studio I get this message:
"<"hash_map">" is deprecated and will be REMOVED. Please use . You can define _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS to acknowledge that you have received this warning."
I tried to add _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS to the preproseccor definitions but it did not help.
It lookes like the problem comes from the file hash_map in "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\include" directory.
Does anyone know what the problem is?
Thanks,
Rachel.

Background compilation/On save compilation in Visual Studio C++

I saw a video about Clang and plugin for Sublime Text allowing autocompilation on save. Can I do something like this in Visual Studio 2015? Maybe with an extension?
Thank you

MEX can't locate VS Express 2013 compiler - MATLAB R2013a

While setting up mex on my machine using mex -setup -v, VS Express 2013 compiler can't be found
for some reasons (see above screenshot). I still have VS 2010 installed on my machine, but I'd like to have the option to select the Express 2013 compiler on C:\Program Files (x86)\Microsoft Visual Studio 12.0\ . Has someone experienced such an issue so as to share his experience?
Thanks
Express Visual Studio compilers are not supported by Matlab.

How to skip debugging all of std namespace in Visual C++ 2013?

I want to skip debugging all of std:: namespace C++ by default, without code window changing to std:: code , authored by Microsoft as xstring . This question is similar to :
How to skip common classes in VS 2008 when stepping in? and
Auto-skip STL functions during step-by-step debugging in MSVC++2010 .
The only difference is that their solution are for visual studio 2008 and 2010. I tried it myself , and it works on visual studio 2010, but I want to do it on visual studio 2013. The same solution doesn't work on visual studio 2013. I tried changing all values in registry equal to :
_RTC_CheckEsp
to
std\:\:.*=NoStepInto
, some of these were values were for visual studio 12.0 ( which is visual studio 2013) , but after restarting visual studio 2013, nothing changed. On the contrary this works on Visual Studio 2010. "Just My Code" option is turned on.
As Hans Passant said, Edit the .natstepfilter files to add exclusions.
create a new file for example nostd.natstepfilter and write in it as in Has the VS2012 NativeDE\StepOver registry entry that prevents step-into for specific functions changed format?
<?xml version="1.0" encoding="utf-8"?>
<StepFilter xmlns="http://schemas.microsoft.com/vstudio/debugger/natstepfilter/2010">
<Function><Name>std::.*</Name><Action>NoStepInto</Action></Function>
</StepFilter>
For a 64-bit windows, move the file to :
C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Packages\Debugger\Visualizers
while for a 32-bit windows to:
C:\Program Files\Microsoft Visual Studio 12.0\Common7\Packages\Debugger\Visualizers
or whatever you customized you installation to. Please note that natstepfilter does not work in mixed mode (mixing native and managed code). Ensure that your project debugging settings is set to Native only