Skip to content

Commit e1ff0a9

Browse files
committed
z
1 parent 1cb0813 commit e1ff0a9

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

doc/README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,22 @@ Imagine a case where you have a variable or parameter name or an expression with
113113
If you dont want to rely on autocompletion you can for instance select it and paste it back:) But what if you need to write it several times in dofferent locations? Or what if it is so far away in the code you cannot really describe it?(say an imported item whose full name you dont even remember)
114114

115115

116-
Collection Queries try to address this issue. These collect the TEXT of interesting regions and display it on the bottom panel.
116+
Collection Queries try to address this issue. These collect the text of interesting regions and display it on the bottom panel.
117117

118118

119119
![](./gif/d4.gif)
120120

121+
you can collect a variety of things:
122+
123+
```python
124+
Choice("index_collectable",{
125+
"(variable|variables)":"variable",
126+
"( parameter | parameters)":"parameter",
127+
"(module|modules)":"module",
128+
"(import|imported) (value|item|object|element)":"import value",
129+
"function ( name |names)":"function name",
130+
}
131+
```
121132
### Insert Item
122133

123134
These "items" can then be inserted in the current cursor position by means of the

0 commit comments

Comments
 (0)