jiangmiao / auto-pairs

Vim plugin, insert or delete brackets, parens, quotes in pair
http://www.vim.org/scripts/script.php?script_id=3599
4.09k stars 373 forks source link

[Feature] support python3 string pairs #352

Open lonnywong opened 2 years ago

lonnywong commented 2 years ago

Since skip ' when inside a word

input: foo| (press ' at |)
output: foo'

Python3 f-string and bytes pairs is not working.

a = b'bytes'
b = f'{a} is not supported'
LunarWatcher commented 2 years ago

This is supported by default in my fork

lonnywong commented 2 years ago

This is supported by default in my fork

Great jobs. I'm going to switch to your fork.