Skip to content

Commit

Permalink
Update doc/specs/#4191 - Formatted Copy/spec.md
Browse files Browse the repository at this point in the history
Co-Authored-By: Josh Soref <[email protected]>
  • Loading branch information
cinnamon-msft and jsoref authored Apr 6, 2020
1 parent 061bd6a commit 43a0522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/specs/#4191 - Formatted Copy/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Solutions for the right click behavior and user settings are described below.

### Right click behavior

Be default, right clicking to copy would only copy the plain text. If the user would like to copy the formatting, they can hold `alt` and right click (this behavior is the same in conhost).
By default, right clicking to copy would only copy the plain text. If the user would like to copy the formatting, they can hold `alt` and right click (this behavior is the same in conhost).

### Settings option 1 - global setting

Expand Down

1 comment on commit 43a0522

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New misspellings found, please review:

  • VTE
To accept these changes, run the following commands
remove_obsolete_words=$(mktemp)
echo '#!/usr/bin/perl -ni
my $re=join "|", qw(
Impl
XY
);
next if /^($re)(?:$| .*)/;
print;' > $remove_obsolete_words
chmod +x $remove_obsolete_words
for file in .github/actions/spell-check/whitelist/alphabet.txt .github/actions/spell-check/whitelist/web.txt .github/actions/spell-check/whitelist/whitelist.txt; do $remove_obsolete_words $file; done
rm $remove_obsolete_words
(
echo "
impl
VTE
xy
"
) | sort -u -f | perl -ne 'next unless /./; print' > new_whitelist.txt && mv new_whitelist.txt '.github/actions/spell-check/whitelist/43a052246548bbe1f6362ad577972addb94d8011.txt'

Please sign in to comment.