Предположим, такой текст
```
find ~ -regextype posix-extended -iregex '.*/[^/]{3,}.pdf'
```
You should also escape the `.` so that it matches “.” rather than any character:
```
find ~ -regextype posix-extended -iregex '.*/[^/]{3,}\.pdf'
```
The regular expression can be simplified since we only care about three non-“/” characters:
```
find ~ -regextype posix-extended -iregex '.*[^/]{3}\.pdf'
```
![enter image description here](https://i.stack.imgur.com/XzZFL.png)
Я хотел бы добавить аннотацию к открытию `` `
если поставляется с python, это легко реализовать с помощью
import re
re.sub(r"```([^`]+)```, r```bash\1```, text)
Как можно применить такое регулярное выражение в vim.