[issue40529] Auto Completions with case insensitive

2022-01-20 Thread Tal Einat


Tal Einat  added the comment:

This should probably be brought up in the python-ideas mailing list, which is 
much more active than the group on discuss.python.org.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2022-01-20 Thread Tal Einat


Change by Tal Einat :


--
Removed message: https://bugs.python.org/msg382481

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2022-01-20 Thread Tal Einat


Change by Tal Einat :


--
Removed message: https://bugs.python.org/msg382482

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2021-07-16 Thread Andrei Kulakov


Andrei Kulakov  added the comment:

It seems like this would be a very good feature to have for accesibility, 
because persons with low level disabilities (e.g. carpal syndrom) will 
generally have a harder time keeping shift down while pressing a few upper case 
letters, and they would often have caps lock remapped to Esc or Ctrl to make 
them more easily usable since caps lock is almost never used. I don't have 
disability but that's what I've heard!

--
nosy: +andrei.avk

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2020-12-04 Thread Karthikeyan Singaravelan


Change by Karthikeyan Singaravelan :


Removed file: https://bugs.python.org/file49655/IMAG0215.jpg

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2020-12-04 Thread 雅雯

雅雯  added the comment:

幹你娘

--
Added file: https://bugs.python.org/file49655/IMAG0215.jpg

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2020-12-04 Thread 雅雯

雅雯  added the comment:

幹你娘

--
nosy: +zhtw1234

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2020-12-04 Thread Madhusudhan Kasula


Madhusudhan Kasula  added the comment:

Thanks for your suggestion Tal Einat.
I have created an discussion topic @ 
https://discuss.python.org/t/autocompletion-with-case-insensitive-option/6017

Please do support.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2020-10-17 Thread Tal Einat


Tal Einat  added the comment:

Thanks for the suggestion and for the high quality PR, Madhusudhan!

I'm not sure about this feature. It seems harmless enough, with the default 
being the existing case-sensitive completion. But it seems like a rather 
esoteric thing to want, so I'm not sure it's worth adding to the stdlib and 
maintaining indefinitely.

Would you mind bringing this up for discussion on Python-Ideas, so that we can 
get a feel for how many others would find this useful?

--
nosy: +taleinat

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2020-05-06 Thread Madhusudhan Kasula


Madhusudhan Kasula  added the comment:

Yes. Python is case sensitive language and this feature will not break its 
essence.
This case insensitive completion will help interpreter user for easy typing and 
choose from the available options.
In the following example even user typed 'os.po', completions will give user 
all the options ignoring case:

>>>  os.po
os.POSIX_FADV_DONTNEEDos.POSIX_FADV_NORMAL  os.POSIX_FADV_SEQUENTIAL  
os.popen( os.posix_fallocate(   
os.POSIX_FADV_NOREUSE os.POSIX_FADV_RANDOM  os.POSIX_FADV_WILLNEED
os.posix_fadvise( 
>>> os.po

And finally, this is implemented as an controllable user option with default 
value as 'case sensitive'. So user can choose to go case insensitive or not. 
Even core 'readline' also provide this option with 'set completion-ignore-case 
on'.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2020-05-06 Thread Steven D'Aprano


Steven D'Aprano  added the comment:

This is a new feature, so it would have to go into 3.9, all older versions are 
in feature-freeze.

--
versions:  -Python 3.5, Python 3.6, Python 3.7, Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2020-05-06 Thread Steven D'Aprano


Steven D'Aprano  added the comment:

Python is a case-sensitive language. Why would case-insensitive completions be 
useful?

--
nosy: +steven.daprano

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2020-05-06 Thread Roundup Robot


Change by Roundup Robot :


--
pull_requests: +19273
pull_request: https://github.com/python/cpython/pull/19957

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2020-05-06 Thread Roundup Robot


Change by Roundup Robot :


--
keywords: +patch
nosy: +python-dev
nosy_count: 1.0 -> 2.0
pull_requests: +19270
stage:  -> patch review
pull_request: https://github.com/python/cpython/pull/19954

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue40529] Auto Completions with case insensitive

2020-05-06 Thread Madhusudhan Kasula


New submission from Madhusudhan Kasula :

Now, we don't have user option to make completions with case insensitive.
It would be nice if user have option to enable/disable case insensitive 
completions.

--
components: Library (Lib)
messages: 368241
nosy: mkasula
priority: normal
severity: normal
status: open
title: Auto Completions with case insensitive
type: enhancement
versions: Python 3.5, Python 3.6, Python 3.7, Python 3.8, Python 3.9

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com