Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
/ CopyWithQuotes Public archive

this plugin is used for sublime text 3 ,add quotes for multiline text for Java/C#、C/C++、PHP/Perl、Delphi、Obj-C source code string.

Notifications You must be signed in to change notification settings

samsha1971/CopyWithQuotes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

538bfb2 · Nov 1, 2015

History

10 Commits
Oct 27, 2015
Oct 27, 2015
Oct 29, 2015
Oct 27, 2015
Oct 27, 2015
Oct 27, 2015
Oct 27, 2015
Oct 27, 2015
Oct 28, 2015
Oct 28, 2015
Oct 28, 2015

Repository files navigation

this plugin is used for sublime text 3 ,add quotes for multiline text for Java/C#、C/C++、PHP/Perl、Delphi、Obj-C source code string.

sample:

common text:

select *, "xx" from  bo_msg t
where t.msg_id = "2" and z=1


after add quotes:

	Java/C#:
		"select *, \"xx\" from  bo_msg t\n" +
		"where t.msg_id = \"2\" and z=1"

	C/C++:
		"select *, \"xx\" from  bo_msg t\n"
		"where t.msg_id = \"2\" and z=1"

	PHP/Perl:
		"select *, \"xx\" from  bo_msg t\n" .
		"where t.msg_id = \"2\" and z=1"

	Delphi:
		'select *, "xx" from  bo_msg t' + #13#10 +
		'where t.msg_id = "2" and z=1'

	Obj-C:
		@"select *, \"xx\" from  bo_msg t\n\
		where t.msg_id = \"2\" and z=1"

how to use: select text in sublime text,click mouse right key , find context menu "Copy with quotes",click submenu for target language。

About

this plugin is used for sublime text 3 ,add quotes for multiline text for Java/C#、C/C++、PHP/Perl、Delphi、Obj-C source code string.

Resources

Stars

Watchers

Forks

Packages

No packages published