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
Copy file name to clipboardExpand all lines: README.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,9 +75,16 @@ Your Operating System may report that `ttotp` "pasted from the clipboard".
75
75
This is because `ttotp` tries to only clear values that it set,
76
76
by checking that the current clipboard value is equal to the value it pasted earlier.
77
77
78
-
Search for a key by pressing "/" and then entering a case insensitive regular expression.
78
+
Search for a key by pressing "/" and then entering a modified case insensitive regular expression.
79
79
Press Ctrl+A to show all keys again.
80
80
81
+
In this type of regular expression, a space `` stands for "zero or more characters, followed by whitespace, followed by zero or more characters"; the sequence backslash-space stands for a literal space.
82
+
83
+
This makes it easy to search for e.g., "Jay Doe / example.com" by entering "ja d ex", while not requiring any sophisticated fuzzy search technology.
84
+
85
+
Due to the simple way this is implemented, a space character inside a character class does not function as expected.
86
+
Since complicated regular expressions are likely seldom used, this is not likely to be a huge limitation.
0 commit comments