Hi,

I see two ways:

An empty suggestion (that can be confusing for the user):

<rule default="off" id="ACTUALLYREALLY" name="Possible needless emphasis:
actually/really">
    <pattern>
        <token regexp="yes">(?-i)actually|really</token>
    </pattern>
    <message>Consider if the word is (actually) necessary. Too much
emphasis mars good writing.</message>
       <suggestion></suggestion>
    <short>Possible needless emphasis</short>
    <example type="incorrect" correction="">This is
<marker>actually</marker> bad.</example>
    <example type="correct">This is bad.</example>
</rule>


Or this (better):

<rule default="off" id="ACTUALLYREALLY" name="Possible needless emphasis:
actually/really">
    <pattern>
        <token regexp="yes">(?-i)actually|really</token>
        <token/>
    </pattern>
    <message>Consider if the word is (actually) necessary. Too much
emphasis mars good writing.</message>
    <suggestion><match no="2"/></suggestion>
    <short>Possible needless emphasis</short>
    <example type="incorrect" correction="bad">This is <marker>actually
bad</marker>.</example>
    <example type="correct">This is bad.</example>
</rule>


Regards,
Jaume



2013/9/7 Kumara Bhikkhu <[email protected]>

>  Dear friends,
>
> How do I modify this so that in LibO the dialog box would allow the user
> to quickly delete the word with the Correct button?
>
> <rule default="off" id="ACTUALLYREALLY" name="Possible needless emphasis:
> actually/really">
>     <pattern>
>         <token regexp="yes">(?-i)actually|really</token>
>     </pattern>
>     <message>Consider if the word is (actually) necessary. Too much
> emphasis mars good writing.</message>
>     <short>Possible needless emphasis</short>
>     <example type="incorrect">This is <marker>actually</marker>
> bad.</example>
>     <example type="correct">This is bad.</example>
> </rule>
>
> kb
>
>
> ------------------------------------------------------------------------------
> Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
> Discover the easy way to master current and previous Microsoft technologies
> and advance your career. Get an incredible 1,500+ hours of step-by-step
> tutorial videos with LearnDevNow. Subscribe today and save!
> http://pubads.g.doubleclick.net/gampad/clk?id=58041391&iu=/4140/ostg.clktrk
> _______________________________________________
> Languagetool-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/languagetool-devel
>
>
------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58041391&iu=/4140/ostg.clktrk
_______________________________________________
Languagetool-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/languagetool-devel

Reply via email to