User TMealy - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T09:18:15Z http://stackoverflow.com/feeds/user/15954 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/208193/why-should-i-use-an-ide/213724#213724 2 Answer by TMealy for Why should I use an IDE? TMealy 2008-10-17T20:27:40Z 2008-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#84055 0 Answer by TMealy for How to increment in vim under windows (where CTRL-A does not work...) TMealy 2008-09-17T14:50:29Z 2008-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 &lt;C-A&gt; gggH&lt;C-O&gt;G inoremap &lt;C-A&gt; &lt;C-O&gt;gg&lt;C-O&gt;gH&lt;C-O&gt;G cnoremap &lt;C-A&gt; &lt;C-C&gt;gggH&lt;C-O&gt;G onoremap &lt;C-A&gt; &lt;C-C&gt;gggH&lt;C-O&gt;G snoremap &lt;C-A&gt; &lt;C-C&gt;gggH&lt;C-O&gt;G xnoremap &lt;C-A&gt; &lt;C-C&gt;ggVG </code></pre> <p>Comment out all of these lines as follows:</p> <pre><code>" CTRL-A is Select all "noremap &lt;C-A&gt; gggH&lt;C-O&gt;G "inoremap &lt;C-A&gt; &lt;C-O&gt;gg&lt;C-O&gt;gH&lt;C-O&gt;G "cnoremap &lt;C-A&gt; &lt;C-C&gt;gggH&lt;C-O&gt;G "onoremap &lt;C-A&gt; &lt;C-C&gt;gggH&lt;C-O&gt;G "snoremap &lt;C-A&gt; &lt;C-C&gt;gggH&lt;C-O&gt;G "xnoremap &lt;C-A&gt; &lt;C-C&gt;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#83630 29 Answer by TMealy for The single most useful Emacs feature TMealy 2008-09-17T14:07:53Z 2008-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>