XAlign icon indicating copy to clipboard operation
XAlign copied to clipboard

Feature request: Dictionary literal supports

Open VincentSit opened this issue 10 years ago • 3 comments

  // before
  return @{@"name": @"张三",
           @"age": @"30",
           @"qq": @"12345",
           @"id": @"123456789012345678",
           @"customKey": @"value",
           @"LongLongLongLongLongLongLongLongKey": @"value"};

  // after
  return @{@"name"                   : @"张三",
           @"age"                    : @"30",
           @"qq"                     : @"12345",
           @"id"                     : @"123456789012345678",
           @"customKey"              : @"value",
           @"LongLongLongLongLongKey": @"value"};

  // after
  return @{@"name"     : @"张三",
           @"age"      : @"30",
           @"qq"       : @"12345",
           @"id"       : @"123456789012345678",
           @"customKey": @"value",
           @"LongLongLongLongLongKey": @"value"};

没有插件制作经验,看了下源码,没有详细的自定义文档无法自己动手自定义,希望能够完善下相关文档。顺便有时间可以考虑实现下此功能,和等号一样可以分段对齐。谢谢。

VincentSit avatar Dec 17 '14 09:12 VincentSit

ok

qfish avatar Dec 17 '14 10:12 qfish

+1

marcelosalloum avatar Mar 19 '15 14:03 marcelosalloum

+1

marcoscurvello avatar Mar 25 '16 17:03 marcoscurvello