所以,vim 用户有https://github.com/kien/rainbow_parentheses.vim
Emacs 用户有http://www.emacswiki.org/emacs/RainbowDelimiters
Sublime Text(2 或 3?)的用户有类似的东西吗?
我已经有了括号荧光笔,它可以让我突出显示最里面的括号,但是我在 sublime text 3 中编辑了很多复杂的 SQL,有时会忘记我的括号。您可以为此编辑配置文件以匹配其他人的行为吗?
Bracketeer 允许您对括号执行操作,但我想只看到它们的颜色。
根据要求,一些示例 sql:
Select
name,
sum(cost) as total_cost,
count(*) as count
from
personnel p,
order o
where
p.prsnl_id = o.prsnl_id
and o.prsnl_id in (
Select prsnl_id
from
organization_personnel_relation
where
org_id in (Select org_id from organization_personnel_relation where prsnl_id = (Select prsnl_id from personnel where prsnl_name = 'test')))
and cost is not null
group by name
order by total_cost desc
limit 50;
我知道这不是超深嵌套,但在某些情况下,我确实看到了非常深的括号嵌套,我仍然想有朝一日学习一个 lisp。