Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-18 Thread vim
Status: New Owner: Labels: Type-Defect Priority-Medium New issue 319 by dhah...@gmail.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 The 'showmatch' option is useful, but it's distracting that it beeps, if no matching pair is found, e.g. wh

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-18 Thread vim
Comment #1 on issue 319 by dhah...@gmail.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 For reference, here is some question/answer about this on StackOverflow: http://stackoverflow.com/a/24242434/15690 -- You received this message because

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-20 Thread vim
Comment #2 on issue 319 by chrisbr...@googlemail.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 Is there a problem to disable the bell altogether? -- You received this message because this project is configured to send all issue notification

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-21 Thread vim
Comment #3 on issue 319 by dhah...@gmail.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 The bell serves its purpose in general and disabling it altogether because of this seems to be overkill. I have it disabled in my terminal (but mostly b

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-21 Thread vim
Comment #4 on issue 319 by chrisbr...@googlemail.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 Anything wrong with this approach? Simply reset the bell setting when Entering Insert mode and reset it when returning. I don't think, we want to

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-24 Thread vim
Comment #5 on issue 319 by dhah...@gmail.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 Thanks for your example config! Maybe it could be added to the documentation for 'showmatch'? Feel free to close the issue if a new option is not wanted (

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-24 Thread vim
Comment #6 on issue 319 by dhah...@gmail.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 Some drawbacks of this approach: - there are other bell events during insert mode, e.g. pressing '' at the end of a line - it adds some overhead to ent

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-24 Thread vim
Comment #7 on issue 319 by sw...@ingo-karkat.de: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 I agree that a native option would have advantages over this rather crude workaround. BTW, the beep also happens when the first candidate of a custom

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-25 Thread vim
Comment #8 on issue 319 by chrisbr...@googlemail.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 Well, perhaps we can have an option like 'beepon' that takes a list of flags to specify when to beep. That would allow us to selectively turn off

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-26 Thread vim
Comment #9 on issue 319 by benjamin...@rockwellcollins.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 Perhaps instead of InsertEnter/InsertLeave to disable the beep, one could use InsertCharPre to disable specifically when entering a few choi

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-27 Thread vim
Updates: Labels: patch Comment #10 on issue 319 by chrisbr...@googlemail.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 Here is a patch, that implements the 'bellon' option. If anybody has a better name, I am all ear ;) Anyway, Docum

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-28 Thread Bram Moolenaar
Christian wrote: > Updates: > Labels: patch > > Comment #10 on issue 319 by chrisbr...@googlemail.com: New option to not > beep with 'showmatch' > https://code.google.com/p/vim/issues/detail?id=319 > > Here is a patch, that implements the 'bellon' option. If anybody has a > better nam

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-28 Thread Christian Brabandt
Hi Bram! On Mi, 28 Jan 2015, Bram Moolenaar wrote: > > Christian wrote: > > > Updates: > > Labels: patch > > > > Comment #10 on issue 319 by chrisbr...@googlemail.com: New option to not > > beep with 'showmatch' > > https://code.google.com/p/vim/issues/detail?id=319 > > > > Here is a pa

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-30 Thread Christian Brabandt
On Mi, 28 Jan 2015, Christian Brabandt wrote: > On Mi, 28 Jan 2015, Bram Moolenaar wrote: > > Christian wrote: > > Thanks for the idea and the patch. > > > > Although single-character flags are not uncommon in Vim, they are hard > > to read back. Newer options have short names, using a comma sepa

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-31 Thread Bram Moolenaar
Christian Brabandt wrote: > On Mi, 28 Jan 2015, Christian Brabandt wrote: > > On Mi, 28 Jan 2015, Bram Moolenaar wrote: > > > Christian wrote: > > > Thanks for the idea and the patch. > > > > > > Although single-character flags are not uncommon in Vim, they are hard > > > to read back. Newer op

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-31 Thread Christian Brabandt
Hi Bram! On Sa, 31 Jan 2015, Bram Moolenaar wrote: > Note: the "E" here should be something else: > indicate that an error occured. It can be silenced by removing the 'E' > flag then. What 'E'? Best, Christian -- Aus Murphy's Gesetze: Beurteilung hat mit Erfahrung zu tun. Erfahrung

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-31 Thread Bram Moolenaar
Christian wrote: > On Sa, 31 Jan 2015, Bram Moolenaar wrote: > > > Note: the "E" here should be something else: > > indicate that an error occured. It can be silenced by removing the 'E' > > flag then. > > What 'E'? I think this was a single letter flag in the first implementation, it

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-31 Thread Christian Brabandt
Hi Bram! On Sa, 31 Jan 2015, Bram Moolenaar wrote: > > Christian wrote: > > > On Sa, 31 Jan 2015, Bram Moolenaar wrote: > > > > > Note: the "E" here should be something else: > > > indicate that an error occured. It can be silenced by removing the 'E' > > > flag then. > > > > What 'E'? >

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-31 Thread Christ van Willegen
On Sat, Jan 31, 2015 at 9:49 PM, Christian Brabandt wrote: > Hi Bram! > > On Sa, 31 Jan 2015, Bram Moolenaar wrote: >> I think this was a single letter flag in the first implementation, it >> should now be a word. > > Yes, this is fixed now with the last patch. But not yet in the documentation at

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-31 Thread Christian Brabandt
Hi Christ! On Sa, 31 Jan 2015, Christ van Willegen wrote: > On Sat, Jan 31, 2015 at 9:49 PM, Christian Brabandt > wrote: > > Hi Bram! > > > > On Sa, 31 Jan 2015, Bram Moolenaar wrote: > >> I think this was a single letter flag in the first implementation, it > >> should now be a word. > > > > Y

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-02-05 Thread Daniel Hahler
Thanks a lot for this patch, Christian! Some remarks for the documentation: 1. s/occued/occured/ 2. Inconsistent punctuation and capitalization in the list; I suggest adding a dot after each item, and upper-casing the first word. 3. s/can't/cannot/ Regards, Daniel. Am Samstag, 31. Januar 2015

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-02-05 Thread vim
Comment #11 on issue 319 by dhah...@gmail.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 For reference, there's an updated patch on the vim_dev mailinglist: https://groups.google.com/d/msg/vim_dev/-jN4_nsSls0/Nbjbrh4jXYEJ -- You received this

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-02-06 Thread Christian Brabandt
Hi Daniel! On Do, 05 Feb 2015, Daniel Hahler wrote: > Thanks a lot for this patch, Christian! > > Some remarks for the documentation: > > 1. s/occued/occured/ > 2. Inconsistent punctuation and capitalization in the list; I suggest adding > a dot after each item, and upper-casing the first word

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-07-21 Thread vim
Updates: Status: Fixed Comment #12 on issue 319 by chrisbr...@googlemail.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 fixed with 7.4.793 and the new 'belloff' option -- You received this message because this project is configured to