Ivanov Dmitry <usr...@gmail.com> wrote: > Hi, Xiha > > Unfortunately URL encoding the [ and ] doesn't work for me. Try to > reproduce it. Create 2 files: > > file.txt. Content: > -------------------------------- > $form['text1'] > > $form['text2'] > -------------------------------- > file.org. Content: > -------------------------------- > [[./file.txt::$form%5B'text2'%5D][text2]] > -------------------------------- > > When I click the link, it says "No match".
While the search string is escaped elsewhere in org-link-search using regexp-quote, it is treated as a regular expression for normal text search. Try escaping with "\": [[./file.txt::$form\%5B'text2'\%5D]] -- Kyle