vim-django icon indicating copy to clipboard operation
vim-django copied to clipboard

Allow toggling between /static/ {{STATIC_URL}} -> {% static "" %}

Open cwood opened this issue 11 years ago • 1 comments

cwood avatar Jun 06 '13 21:06 cwood

Regex for {{STATIC_URL}}

%s~"{{STATIC_URL}}\(\S*\)"~"{% static "\1" %}"~g

Regex for /static/

%s~"/static/\(\S*\)"~"{% static "\1" %}"~g

cwood avatar Jun 06 '13 21:06 cwood