Currently "Find Orphan Brackets" only checks for /.../, /#...#/, /$...$/, and /P...P/ orphans.
There are three more rewrap markers listed at http://www.pgdp.net/wiki/PPTools/Guiguts/Rewrapping#Rewrap_Markers.
Please add orphan checking for the /f...f/, /L...L/, and /X...X/ rewrap markers.
To open Find Orphan Brackets:
Menu-->Search and Replace-->Find Orphan Brackets
Select an option (e.g. / /) then click Search.
Anonymous
View and moderate all "feature-requests Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Feature Requests"
I think this can be done by adding the following at line 1823:
my $fsel = $frame1->Radiobutton(
-variable => \$::lglobal{brsel},
-selectcolor => $::lglobal{checkcolor},
-value => '^\/F|F\/',
-text => '/F F/',
)->grid( -row => 1, -column => 5, -pady => 5 );
my $lsel = $frame1->Radiobutton(
-variable => \$::lglobal{brsel},
-selectcolor => $::lglobal{checkcolor},
-value => '^\/L|L\/',
-text => '/L L/',
)->grid( -row => 1, -column => 6, -pady => 5 );
my $xsel = $frame1->Radiobutton(
-variable => \$::lglobal{brsel},
-selectcolor => $::lglobal{checkcolor},
-value => '^\/X|X\/',
-text => '/X X/',
)->grid( -row => 1, -column => 7, -pady => 5 );
followed by adding the following at the new line 2001/2002
|| ( ( $::lglobal{brbrackets}[0] =~ m{^\x7f/[f]}i )
&& ( $::lglobal{brbrackets}[1] =~ m{^\x7f[f]/}i ) )
|| ( ( $::lglobal{brbrackets}[0] =~ m{^\x7f/[l]}i )
&& ( $::lglobal{brbrackets}[1] =~ m{^\x7f[l]/}i ) )
|| ( ( $::lglobal{brbrackets}[0] =~ m{^\x7f/[x]}i )
&& ( $::lglobal{brbrackets}[1] =~ m{^\x7f[x]/}i ) )
Nigel (windymilla)