'country_name' => input(''),
'company_name' => input(''),
'company_id' => input(''),
'job_title' => input(''),
等号对其如下
'country_name' => input(''),
'company_name' => input(''),
'company_id' => input(''),
'job_title' => input(''),
找到了,是alignment
1
hanzichi 2017-01-06 10:27:55 +08:00 2
alignment
|
2
hanzichi 2017-01-06 10:28:50 +08:00
PS :我用的一些 sublime 插件 https://github.com/hanzichi/personal-collections/blob/master/sublime-plugin.md
|
3
ioioioioioioi OP |
4
hanzichi 2017-01-06 11:03:18 +08:00
@ioioioioioioi 没选中代码?或者 alt+z 快捷键冲突了?
|
5
hanzichi 2017-01-06 11:03:35 +08:00
@ioioioioioioi 重启下 sublime ?
|
6
ioioioioioioi OP @hanzichi 搞定了,多谢。在 setting 里加了"alignment_chars": ["=", ":", "=>"]
|
7
loserwn 2017-01-06 11:41:10 +08:00
@ioioioioioioi 原则上默认的配置中应该支持 => 吧。
```bash // The characters to align along with "alignment_chars" // For instance if the = is to be aligned, there are a number of // symbols that can be combined with the = to make an operator, and all // of those must be kept next to the = for the operator to be parsed "alignment_prefix_chars": [ "+", "-", "&", "|", "<", ">", "!", "~", "%", "/", "*", "." ] ``` |