在VIM中进行一些编程我想在列中自动排列一些内容。做:!column -t在很大程度上起作用,但它不知道字符串文字的概念,所以它们也会被修改。是否有任何简短的方法可以将字符串文字视为列的单个单元格?
*编辑*
例如,如果我目前有行
stringType short "Short string" plusSome
otherStringType longStringName "Intentionally do a longer string" plusSomeMore
我希望将其格式化为
stringType short "Short string" plusSome
otherStringType longStringName "Intentionally do a longer string" plusSomeMore
而不是
stringType short "Short string" plusSome
otherStringType longStringName "Intentionally do a longer string" plusSomeMore