User TMealy - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T09:18:15Zhttp://stackoverflow.com/feeds/user/15954http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/208193/why-should-i-use-an-ide/213724#2137242Answer by TMealy for Why should I use an IDE?TMealy2008-10-17T20:27:40Z2008-10-17T20:27:40Z<p>An IDE <em>can</em> be a 'superior' choice based depending upon what a developer is trying to accomplish. </p>
<p>An IDE <em>can</em> be 'superior' because IDEs are typically geared toward one (or a small selection) of languages. </p>
<p>If a developer spends most of his/her time in a single languge or a 'cluster' of related languages (like C# and T-SQL), in one OS, then the GUI design, debug, intellisense, refactoring etc. tools offered by a good IDE can be very compelling. If, for instance, you spend most of your time working in VB.NET, with maybe a little T-SQL now and then, in a Windows environment, then you'd be pretty silly to not look at Visual Studio or a comparable IDE.</p>
<p>I have no prejudice towards those who prefer IDEs or text editors, both can be very productive and useful <em>if learned well</em>!</p>
http://stackoverflow.com/questions/66919/how-to-increment-in-vim-under-windows-where-ctrl-a-does-not-work/84055#840550Answer by TMealy for How to increment in vim under windows (where CTRL-A does not work...)TMealy2008-09-17T14:50:29Z2008-09-17T14:50:29Z<p>You can make the Ctrl-A increment in windows by opening up the 'mswin.vim' file in your vim directory and finding the section that looks like:</p>
<pre><code>" CTRL-A is Select all
noremap <C-A> gggH<C-O>G
inoremap <C-A> <C-O>gg<C-O>gH<C-O>G
cnoremap <C-A> <C-C>gggH<C-O>G
onoremap <C-A> <C-C>gggH<C-O>G
snoremap <C-A> <C-C>gggH<C-O>G
xnoremap <C-A> <C-C>ggVG
</code></pre>
<p>Comment out all of these lines as follows:</p>
<pre><code>" CTRL-A is Select all
"noremap <C-A> gggH<C-O>G
"inoremap <C-A> <C-O>gg<C-O>gH<C-O>G
"cnoremap <C-A> <C-C>gggH<C-O>G
"onoremap <C-A> <C-C>gggH<C-O>G
"snoremap <C-A> <C-C>gggH<C-O>G
"xnoremap <C-A> <C-C>ggVG
</code></pre>
<p>and the Ctrl-A keystroke will increment.</p>
<p>This is a pretty nice option when your keyboard doesn't have a real number pad.</p>
http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/83630#8363029Answer by TMealy for The single most useful Emacs featureTMealy2008-09-17T14:07:53Z2008-09-17T14:07:53Z<p><strong>M-x occur</strong></p>
<p>This feature is very useful when re-factoring/analyzing code. It's one of the things that keeps me from becoming a vim user.</p>