You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Described each of the 8 Convert Case commands, with examples showing the differences in behavior
(not really v8.5.5-specific, but since v8.5.5 improved Proper Case handling, used that as a good impetus to describe the actual behavior of those commands)
Copy file name to clipboardExpand all lines: content/docs/editing.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,15 @@ Below the `Begin/End Select` entries, there are a number of sub-menus to the **E
143
143
*`Date Time (custom)` ⇒ can insert a date with a customized format, as defined in the [**Settings > Preferences > Multi-Instance & Date**](../preferences/#multi-instance-and-date) dialog
144
144
*`Copy to Clipboard >` ⇒ submenu with actions that copy current filename, path, or directory name to the clipboard
145
145
*`Indent >` ⇒ submenu with actions that increase or decrease the current line's indentation, based on [the syntax language's](../preferences/#language) tab/indent settings
146
-
*`Convert Case to >` ⇒ submenu with actions that change the case of the selected text (all UPPERCASE, all lowercase, and various mixed-case settings)
146
+
*`Convert Case to >` ⇒ submenu with actions that change the case of the selected text
147
+
-`Uppercase` ⇒ convert to all uppercase: `StArT mIxEd` ⇒ `START MIXED`
148
+
-`lowercase` ⇒ convert to all lowercase: `StArT mIxEd` ⇒ `start mixed`
149
+
-`Proper Case` ⇒ first character of every word is made uppercase, all others made lowercase: `isCharAlpha NMumericW` ⇒ `Ischaralpha Nmumericw`
150
+
-`Proper Case (blend)` ⇒ first character of every word is made uppercase, all others left alone: `isCharAlpha NMumericW` ⇒ `IsCharAlpha NMumericW`
151
+
-`Sentence case` ⇒ first character of each sentence is made uppercase, all others made lowercase: `tHis Is A Sentence. iS tHis Second?` ⇒ `This is a sentence. Is this second?`
152
+
-`Sentence case (blend)` ⇒ first charaacter of each sentence is made uppercase, all others left alone: `tHis Is A Sentence. iS tHis Second?` ⇒ `THis Is A Sentence. IS tHis Second?`
153
+
-`iNVERT cASE` ⇒ any that were uppercase are changed to lowercase, and any that were lowercase are changed to uppercase: `StArT mIxEd` ⇒ `sTaRt MiXeD`
154
+
-`ranDOm CasE` ⇒ each character gets a random case: `StArT mIxEd` ⇒ `StaRt mIxeD`
147
155
*`Line Operations >` ⇒ submenu with actions that typically work on lines (also known as "rows") of your document
148
156
* There is a method for duplicating data:
149
157
* `Duplicate Current Line`: duplicates the current line if no selection is active, or duplicates the selected text if a selection is active
0 commit comments