CopyWithQuotes
该插件用于 Sublime Text 3,为 Java/C#、C/C++、PHP/Perl、Delphi、Obj-C 代码字符串的多行文本添加引号。
详细信息
安装次数
- 总数 292
- Win 177
- Mac 74
- Linux 41
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
README
该插件用于 Sublime Text 3,为 Java/C#、C/C++、PHP/Perl、Delphi、Obj-C 代码字符串的多行文本添加引号。
示例:
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"
使用方法:在 Sublime Text 中选择文本,单击鼠标右键,找到上下文菜单“带引号复制”,点击目标语言的子菜单。