maphew
unread,Feb 14, 2012, 5:47:36 PM2/14/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to PyScripter
Hi All,
I'm new to pyscripter and am enjoying it immensely. Thanks to all
who've contributed to make it what it is. :)
I'm a bit confused about the behaviour of code completion of quote and
brace characters. Sometimes the cursor skips over the closing quote/
brace and sometimes it inserts a new one. In the example below ^ caret
shows insert cursor position; only quote shown but the same behaviour
occurs with braces.
{{{
# typing quote " will advance cursor over the quote, this is desired
s = "^"
# result:
# s=""^
# typing " will insert a quote, necessitating a delete
s= "some letters^"
# result, undesired:
# s= "some letters"^"
}}}
In terms of how I experience using pyscripter, this is a defect
because a feature which is supposed to be lightening the load is
actually making more work. I need to be always either moving my
fingers from home row in order to access the cursor keys, or
duplicating characters and then removing the extras later. In most
other respects the completion is helpful, so I don't want to turn it
off.
Is what I've just described here the same for everyone or do I have
localized problem? And if it is the same for all, how do you work
around it?
I'm using Portable PyScripter 2.4.3.0 on Win7 with Python 3.2.
thanks and best regards,
-matt