-- Some comments here
CREATE EXTERNAL TABLE IF NOT EXISTS IMPS
(
CLICKS INT COMMENT 'Number of raw clicks for this impression.',
VIEWS INT COMMENT 'Number of raw views for this impression'
)
我想将上述内容列为:
-- Some comments here
CREATE EXTERNAL TABLE IF NOT EXISTS IMPS
(
CLICKS INT COMMENT 'Number of raw clicks for this impression.',
VIEWS INT COMMENT 'Number of raw views for this impression'
)
我该怎么办?如果我使用:Tab \
,它也会在字符串内部进行制表。
答案 0 :(得分:0)
我对表格插件没有经验,但从文档看起来像
:Tab / \@!<('.*)/
会奏效。只要在该行之前没有单引号,该模式就匹配一个空格字符。