Re: Intellisense and the psychology of typing

2005-06-01 Thread Robert C.Martin
On 26 May 2005 09:31:12 -0700, [EMAIL PROTECTED] wrote: >Yesterday I typed in some C++ code that called a function with two >ints. Intellisense (auto-complete) helpfully told me that the first >formal parameter was called "frontLight" and the second "ringLight". It >occurred to me that I'm getting

Re: Intellisense and the psychology of typing

2005-05-29 Thread Vincent Foley
I have rapidly skimmed over the few responses here. Auto completion is definitly possible in dynamic languages: Common Lisp has it with its Emacs mode, SLIME. If you're in a slime buffer, you type (get-un then press C-c Tab and Emacs will auto-complete with (get-universal-time), if there are many

Re: Intellisense and the psychology of typing

2005-05-28 Thread Lurker
"James D Carroll" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > if I have to type 'boolean' instead of 'boo' I get real cranky real fast. Why? Is your programming speed really limited by the difference between typing "lean" and hitting ? If typing speed is the limitation - go get

Re: Intellisense and the psychology of typing

2005-05-27 Thread James D Carroll
<[EMAIL PROTECTED]> wrote> > 1) Intellisense is really just another crutch that does more harm than > good? There were a few hardcore defenders of this position but not > many. I'm primarily a VB programmer, but I also do Java and web stuff as well. Whenever I look at a new IDE the FIRST thing I lo

Re: Intellisense and the psychology of typing

2005-05-27 Thread Brian Beck
Well, there are two distinct features of IntelliSense as you know it. One is auto-completion and the other is contextual help. Auto-completion is included almost all beefy Python IDE's. Contextual help is included even in IDLE, where if you begin typing a function call, its docstring pops up arou

Re: Intellisense and the psychology of typing

2005-05-27 Thread EventHelix.com
Intellisense does improve programmer productivity as you do not have to keep opening header files to refer to the interfaces. In VC++ the intellisense display also shows the function header comment, so you have full access to the information about the interface. Deepa -- EventStudio 2.5 - http://w

Re: Intellisense and the psychology of typing

2005-05-26 Thread Jason Gurtz
On 5/26/2005 12:31, [EMAIL PROTECTED] wrote: > 1) Intellisense is really just another crutch that does more harm than > good? To me I found the intellisense in VS for C++ was somewhat helpful in my earliest stage of learning where I had to look up how many args a function had. After a while, I

Re: Intellisense and the psychology of typing

2005-05-26 Thread [EMAIL PROTECTED]
my opinion is that if you find it useful, use it. if you don't then don't... either way, its up to you to decide what's useful and what's not. don't ask us. Try it out yourself. -- http://mail.python.org/mailman/listinfo/python-list

Intellisense and the psychology of typing

2005-05-26 Thread andrew . queisser
Yesterday I typed in some C++ code that called a function with two ints. Intellisense (auto-complete) helpfully told me that the first formal parameter was called "frontLight" and the second "ringLight". It occurred to me that I'm getting some semantic help here on top of the obvious type safety. I