<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Techy Things &#187; webstorm</title>
	<atom:link href="https://tech.yipp.ca/category/webstorm/feed/" rel="self" type="application/rss+xml" />
	<link>https://tech.yipp.ca</link>
	<description>Just another Yipp.ca Blogs site</description>
	<lastBuildDate>Thu, 01 May 2025 18:06:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>SASS files (.scss) to CSS watcher in WebStorm</title>
		<link>https://tech.yipp.ca/webstorm/sass-files-scss-css-watcher-webstorm/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sass-files-scss-css-watcher-webstorm</link>
		<comments>https://tech.yipp.ca/webstorm/sass-files-scss-css-watcher-webstorm/#comments</comments>
		<pubDate>Wed, 24 Dec 2014 23:06:00 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[webstorm]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=1366</guid>
		<description><![CDATA[<p>&#160; I was originally converting SASS to CSS using external gulpfile.js to watch *.scss files and convert with gulp-sass and gulp-watch. I then found out that WebStorm has a built-in watch capability that is&#46;&#46;&#46;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/webstorm/sass-files-scss-css-watcher-webstorm/">SASS files (.scss) to CSS watcher in WebStorm</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>&nbsp;</p>
<p>I was originally converting SASS to CSS using external gulpfile.js to watch *.scss files and convert with gulp-sass and gulp-watch. I then found out that WebStorm has a built-in watch capability that is more powerful than gulp-watch.</p>
<p>gulp-watch</p>
<p>CONs</p>
<ul>
<li>You have to run the command-line manually and keep it open everytime you restart working on the project.</li>
<li>If you make an error in CSS syntax, it will halt the watch routine and your file wont be updated anymore, even if you fix the error. For example if you write background: src(user128x128.png) and forget the single quotes, it will halt with
<p><span style="font-size: 13px;">[19:05:01] base.scss was changed stream.js:94 throw er; // Unhandled stream error in pipe. ^ Error: stdin:31: error reading values after user128x128</span></li>
</ul>
<p><span style="font-size: 13px;">PROs</span></p>
<ul>
<li>It is free</li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/webstorm/sass-files-scss-css-watcher-webstorm/">SASS files (.scss) to CSS watcher in WebStorm</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tech.yipp.ca/webstorm/sass-files-scss-css-watcher-webstorm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to stop auto-indent on WebStorm IDE</title>
		<link>https://tech.yipp.ca/webstorm/how-to-stop-auto-indent-on-webstorm-ide/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-stop-auto-indent-on-webstorm-ide</link>
		<comments>https://tech.yipp.ca/webstorm/how-to-stop-auto-indent-on-webstorm-ide/#comments</comments>
		<pubDate>Tue, 10 Jun 2014 15:48:09 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[webstorm]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=764</guid>
		<description><![CDATA[<p>Disabling auto-indent on WebStorm WebStorm is quite a different editor than Visual Studio. For one thing it saves automatically files after you make changes. There is no save button ! This can be good&#46;&#46;&#46;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/webstorm/how-to-stop-auto-indent-on-webstorm-ide/">How to stop auto-indent on WebStorm IDE</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h3>Disabling auto-indent on WebStorm</h3>
<p>WebStorm is quite a different editor than Visual Studio. For one thing it saves automatically files after you make changes. There is no save button ! This can be good or anoying..  I guess it was the preference of the original creator.</p>
<p>Another very annoying thing is the tab size and indentation. Not only it does not auto-detect your current file / project tab size and auto-indent as soon as you write a closing }, and you cannot even hit Ctrl-Z to step backward just the indentation step : it also removes the } you wrote - meaning there is no way to write a closing } without doing the auto-indentation reformating - unless you disable the feature competely :</p>
<h3>Disable auto-indent</h3>
<p>File | Settings | (IDE Settings) Editor | SmartKeys &gt; Reformat block on typing '}'</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/webstorm/how-to-stop-auto-indent-on-webstorm-ide/">How to stop auto-indent on WebStorm IDE</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tech.yipp.ca/webstorm/how-to-stop-auto-indent-on-webstorm-ide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
