We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
snippet .map options word regexp '\(\w\+\)s\.map$' .map(\0 => ${0})
so i can have things.map convert to things.map(thing => ...)
things.map
things.map(thing => ...)
and if the whole match would be removed by default you could do even cooler things
snippet .keys options word regexp '\(\w\+\)\.keys$' Object.keys(\0)
then this would convert test.keys to Object.keys(test)
test.keys
Object.keys(test)
The text was updated successfully, but these errors were encountered:
Sorry, I don't want to add the complex feature in neosnippet.vim.
Sorry, something went wrong.
No branches or pull requests
so i can have
things.map
convert tothings.map(thing => ...)
and if the whole match would be removed by default you could do even cooler things
then this would convert
test.keys
toObject.keys(test)
The text was updated successfully, but these errors were encountered: