ace-oqc 1.4.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (401) hide show
  1. package/package.json +7 -0
  2. package/src-noconflict/ace.js +21402 -0
  3. package/src-noconflict/ext-beautify.js +331 -0
  4. package/src-noconflict/ext-elastic_tabstops_lite.js +277 -0
  5. package/src-noconflict/ext-emmet.js +1331 -0
  6. package/src-noconflict/ext-error_marker.js +9 -0
  7. package/src-noconflict/ext-keybinding_menu.js +193 -0
  8. package/src-noconflict/ext-language_tools.js +2166 -0
  9. package/src-noconflict/ext-linking.js +64 -0
  10. package/src-noconflict/ext-modelist.js +248 -0
  11. package/src-noconflict/ext-options.js +799 -0
  12. package/src-noconflict/ext-prompt.js +2806 -0
  13. package/src-noconflict/ext-rtl.js +122 -0
  14. package/src-noconflict/ext-searchbox.js +514 -0
  15. package/src-noconflict/ext-settings_menu.js +820 -0
  16. package/src-noconflict/ext-spellcheck.js +73 -0
  17. package/src-noconflict/ext-split.js +207 -0
  18. package/src-noconflict/ext-static_highlight.js +229 -0
  19. package/src-noconflict/ext-statusbar.js +56 -0
  20. package/src-noconflict/ext-textarea.js +430 -0
  21. package/src-noconflict/ext-themelist.js +67 -0
  22. package/src-noconflict/ext-whitespace.js +213 -0
  23. package/src-noconflict/keybinding-emacs.js +1169 -0
  24. package/src-noconflict/keybinding-sublime.js +422 -0
  25. package/src-noconflict/keybinding-vim.js +6198 -0
  26. package/src-noconflict/mode-abap.js +221 -0
  27. package/src-noconflict/mode-abc.js +271 -0
  28. package/src-noconflict/mode-actionscript.js +275 -0
  29. package/src-noconflict/mode-ada.js +137 -0
  30. package/src-noconflict/mode-apache_conf.js +363 -0
  31. package/src-noconflict/mode-apex.js +457 -0
  32. package/src-noconflict/mode-applescript.js +278 -0
  33. package/src-noconflict/mode-aql.js +102 -0
  34. package/src-noconflict/mode-asciidoc.js +349 -0
  35. package/src-noconflict/mode-asl.js +422 -0
  36. package/src-noconflict/mode-assembly_x86.js +193 -0
  37. package/src-noconflict/mode-autohotkey.js +244 -0
  38. package/src-noconflict/mode-batchfile.js +230 -0
  39. package/src-noconflict/mode-c9search.js +293 -0
  40. package/src-noconflict/mode-c_cpp.js +503 -0
  41. package/src-noconflict/mode-cirru.js +210 -0
  42. package/src-noconflict/mode-clojure.js +315 -0
  43. package/src-noconflict/mode-cobol.js +101 -0
  44. package/src-noconflict/mode-coffee.js +400 -0
  45. package/src-noconflict/mode-coldfusion.js +2596 -0
  46. package/src-noconflict/mode-crystal.js +642 -0
  47. package/src-noconflict/mode-csharp.js +502 -0
  48. package/src-noconflict/mode-csound_document.js +4105 -0
  49. package/src-noconflict/mode-csound_orchestra.js +3035 -0
  50. package/src-noconflict/mode-csound_score.js +462 -0
  51. package/src-noconflict/mode-csp.js +59 -0
  52. package/src-noconflict/mode-css.js +720 -0
  53. package/src-noconflict/mode-curly.js +2564 -0
  54. package/src-noconflict/mode-d.js +520 -0
  55. package/src-noconflict/mode-dart.js +715 -0
  56. package/src-noconflict/mode-diff.js +147 -0
  57. package/src-noconflict/mode-django.js +2595 -0
  58. package/src-noconflict/mode-dockerfile.js +500 -0
  59. package/src-noconflict/mode-dot.js +417 -0
  60. package/src-noconflict/mode-drools.js +498 -0
  61. package/src-noconflict/mode-edifact.js +166 -0
  62. package/src-noconflict/mode-eiffel.js +135 -0
  63. package/src-noconflict/mode-ejs.js +3533 -0
  64. package/src-noconflict/mode-elixir.js +501 -0
  65. package/src-noconflict/mode-elm.js +306 -0
  66. package/src-noconflict/mode-erlang.js +1010 -0
  67. package/src-noconflict/mode-forth.js +297 -0
  68. package/src-noconflict/mode-fortran.js +430 -0
  69. package/src-noconflict/mode-fsharp.js +316 -0
  70. package/src-noconflict/mode-fsl.js +259 -0
  71. package/src-noconflict/mode-ftl.js +1193 -0
  72. package/src-noconflict/mode-gcode.js +93 -0
  73. package/src-noconflict/mode-gherkin.js +168 -0
  74. package/src-noconflict/mode-gitignore.js +59 -0
  75. package/src-noconflict/mode-glsl.js +580 -0
  76. package/src-noconflict/mode-gobstones.js +1090 -0
  77. package/src-noconflict/mode-golang.js +413 -0
  78. package/src-noconflict/mode-graphqlschema.js +214 -0
  79. package/src-noconflict/mode-groovy.js +989 -0
  80. package/src-noconflict/mode-haml.js +1873 -0
  81. package/src-noconflict/mode-handlebars.js +2622 -0
  82. package/src-noconflict/mode-haskell.js +380 -0
  83. package/src-noconflict/mode-haskell_cabal.js +141 -0
  84. package/src-noconflict/mode-haxe.js +386 -0
  85. package/src-noconflict/mode-hjson.js +353 -0
  86. package/src-noconflict/mode-html.js +2509 -0
  87. package/src-noconflict/mode-html_elixir.js +3088 -0
  88. package/src-noconflict/mode-html_ruby.js +3550 -0
  89. package/src-noconflict/mode-ini.js +162 -0
  90. package/src-noconflict/mode-io.js +248 -0
  91. package/src-noconflict/mode-jack.js +346 -0
  92. package/src-noconflict/mode-jade.js +2025 -0
  93. package/src-noconflict/mode-java.js +1038 -0
  94. package/src-noconflict/mode-javascript.js +798 -0
  95. package/src-noconflict/mode-json.js +329 -0
  96. package/src-noconflict/mode-jsoniq.js +2632 -0
  97. package/src-noconflict/mode-jsp.js +1433 -0
  98. package/src-noconflict/mode-jssm.js +325 -0
  99. package/src-noconflict/mode-jsx.js +411 -0
  100. package/src-noconflict/mode-julia.js +303 -0
  101. package/src-noconflict/mode-kotlin.js +797 -0
  102. package/src-noconflict/mode-latex.js +296 -0
  103. package/src-noconflict/mode-less.js +839 -0
  104. package/src-noconflict/mode-liquid.js +2742 -0
  105. package/src-noconflict/mode-lisp.js +112 -0
  106. package/src-noconflict/mode-livescript.js +279 -0
  107. package/src-noconflict/mode-logiql.js +317 -0
  108. package/src-noconflict/mode-logtalk.js +352 -0
  109. package/src-noconflict/mode-lsl.js +343 -0
  110. package/src-noconflict/mode-lua.js +452 -0
  111. package/src-noconflict/mode-luapage.js +3028 -0
  112. package/src-noconflict/mode-lucene.js +154 -0
  113. package/src-noconflict/mode-makefile.js +412 -0
  114. package/src-noconflict/mode-markdown.js +3194 -0
  115. package/src-noconflict/mode-mask.js +1803 -0
  116. package/src-noconflict/mode-matlab.js +263 -0
  117. package/src-noconflict/mode-maze.js +292 -0
  118. package/src-noconflict/mode-mel.js +263 -0
  119. package/src-noconflict/mode-mixal.js +122 -0
  120. package/src-noconflict/mode-mushcode.js +681 -0
  121. package/src-noconflict/mode-mysql.js +167 -0
  122. package/src-noconflict/mode-nginx.js +298 -0
  123. package/src-noconflict/mode-nim.js +363 -0
  124. package/src-noconflict/mode-nix.js +647 -0
  125. package/src-noconflict/mode-nsis.js +312 -0
  126. package/src-noconflict/mode-objectivec.js +740 -0
  127. package/src-noconflict/mode-ocaml.js +421 -0
  128. package/src-noconflict/mode-pascal.js +223 -0
  129. package/src-noconflict/mode-perl.js +381 -0
  130. package/src-noconflict/mode-pgsql.js +1743 -0
  131. package/src-noconflict/mode-php.js +13110 -0
  132. package/src-noconflict/mode-php_laravel_blade.js +13311 -0
  133. package/src-noconflict/mode-pig.js +310 -0
  134. package/src-noconflict/mode-plain_text.js +32 -0
  135. package/src-noconflict/mode-powershell.js +418 -0
  136. package/src-noconflict/mode-praat.js +478 -0
  137. package/src-noconflict/mode-prolog.js +371 -0
  138. package/src-noconflict/mode-properties.js +80 -0
  139. package/src-noconflict/mode-protobuf.js +593 -0
  140. package/src-noconflict/mode-puppet.js +368 -0
  141. package/src-noconflict/mode-python.js +508 -0
  142. package/src-noconflict/mode-r.js +312 -0
  143. package/src-noconflict/mode-razor.js +2875 -0
  144. package/src-noconflict/mode-rdoc.js +243 -0
  145. package/src-noconflict/mode-red.js +450 -0
  146. package/src-noconflict/mode-redshift.js +360 -0
  147. package/src-noconflict/mode-rhtml.js +2808 -0
  148. package/src-noconflict/mode-rst.js +257 -0
  149. package/src-noconflict/mode-ruby.js +1003 -0
  150. package/src-noconflict/mode-rust.js +282 -0
  151. package/src-noconflict/mode-sass.js +529 -0
  152. package/src-noconflict/mode-scad.js +414 -0
  153. package/src-noconflict/mode-scala.js +984 -0
  154. package/src-noconflict/mode-scheme.js +232 -0
  155. package/src-noconflict/mode-scss.js +873 -0
  156. package/src-noconflict/mode-sh.js +449 -0
  157. package/src-noconflict/mode-sjs.js +1015 -0
  158. package/src-noconflict/mode-slim.js +5240 -0
  159. package/src-noconflict/mode-smarty.js +2635 -0
  160. package/src-noconflict/mode-snippets.js +207 -0
  161. package/src-noconflict/mode-soy_template.js +2848 -0
  162. package/src-noconflict/mode-space.js +167 -0
  163. package/src-noconflict/mode-sparql.js +320 -0
  164. package/src-noconflict/mode-sql.js +271 -0
  165. package/src-noconflict/mode-sqlserver.js +445 -0
  166. package/src-noconflict/mode-stylus.js +472 -0
  167. package/src-noconflict/mode-svg.js +1582 -0
  168. package/src-noconflict/mode-swift.js +395 -0
  169. package/src-noconflict/mode-tcl.js +387 -0
  170. package/src-noconflict/mode-terraform.js +400 -0
  171. package/src-noconflict/mode-tex.js +160 -0
  172. package/src-noconflict/mode-text.js +9 -0
  173. package/src-noconflict/mode-textile.js +150 -0
  174. package/src-noconflict/mode-toml.js +153 -0
  175. package/src-noconflict/mode-tsx.js +888 -0
  176. package/src-noconflict/mode-turtle.js +296 -0
  177. package/src-noconflict/mode-twig.js +2693 -0
  178. package/src-noconflict/mode-typescript.js +869 -0
  179. package/src-noconflict/mode-vala.js +677 -0
  180. package/src-noconflict/mode-vbscript.js +635 -0
  181. package/src-noconflict/mode-velocity.js +2792 -0
  182. package/src-noconflict/mode-verilog.js +118 -0
  183. package/src-noconflict/mode-vhdl.js +116 -0
  184. package/src-noconflict/mode-visualforce.js +2640 -0
  185. package/src-noconflict/mode-wollok.js +914 -0
  186. package/src-noconflict/mode-xml.js +676 -0
  187. package/src-noconflict/mode-xquery.js +2644 -0
  188. package/src-noconflict/mode-yaml.js +330 -0
  189. package/src-noconflict/mode-zeek.js +539 -0
  190. package/src-noconflict/qurator-mode.js +120 -0
  191. package/src-noconflict/qurator-worker.js +91 -0
  192. package/src-noconflict/snippets/abap.js +9 -0
  193. package/src-noconflict/snippets/abc.js +45 -0
  194. package/src-noconflict/snippets/actionscript.js +171 -0
  195. package/src-noconflict/snippets/ada.js +9 -0
  196. package/src-noconflict/snippets/apache_conf.js +9 -0
  197. package/src-noconflict/snippets/apex.js +9 -0
  198. package/src-noconflict/snippets/applescript.js +9 -0
  199. package/src-noconflict/snippets/aql.js +9 -0
  200. package/src-noconflict/snippets/asciidoc.js +9 -0
  201. package/src-noconflict/snippets/asl.js +9 -0
  202. package/src-noconflict/snippets/assembly_x86.js +9 -0
  203. package/src-noconflict/snippets/autohotkey.js +9 -0
  204. package/src-noconflict/snippets/batchfile.js +9 -0
  205. package/src-noconflict/snippets/c9search.js +9 -0
  206. package/src-noconflict/snippets/c_cpp.js +145 -0
  207. package/src-noconflict/snippets/cirru.js +9 -0
  208. package/src-noconflict/snippets/clojure.js +104 -0
  209. package/src-noconflict/snippets/cobol.js +9 -0
  210. package/src-noconflict/snippets/coffee.js +109 -0
  211. package/src-noconflict/snippets/coldfusion.js +9 -0
  212. package/src-noconflict/snippets/crystal.js +9 -0
  213. package/src-noconflict/snippets/csharp.js +9 -0
  214. package/src-noconflict/snippets/csound_document.js +24 -0
  215. package/src-noconflict/snippets/csound_orchestra.js +61 -0
  216. package/src-noconflict/snippets/csound_score.js +9 -0
  217. package/src-noconflict/snippets/csp.js +9 -0
  218. package/src-noconflict/snippets/css.js +981 -0
  219. package/src-noconflict/snippets/curly.js +9 -0
  220. package/src-noconflict/snippets/d.js +9 -0
  221. package/src-noconflict/snippets/dart.js +97 -0
  222. package/src-noconflict/snippets/diff.js +25 -0
  223. package/src-noconflict/snippets/django.js +122 -0
  224. package/src-noconflict/snippets/dockerfile.js +9 -0
  225. package/src-noconflict/snippets/dot.js +9 -0
  226. package/src-noconflict/snippets/drools.js +33 -0
  227. package/src-noconflict/snippets/edifact.js +254 -0
  228. package/src-noconflict/snippets/eiffel.js +9 -0
  229. package/src-noconflict/snippets/ejs.js +9 -0
  230. package/src-noconflict/snippets/elixir.js +9 -0
  231. package/src-noconflict/snippets/elm.js +9 -0
  232. package/src-noconflict/snippets/erlang.js +174 -0
  233. package/src-noconflict/snippets/forth.js +9 -0
  234. package/src-noconflict/snippets/fortran.js +9 -0
  235. package/src-noconflict/snippets/fsharp.js +9 -0
  236. package/src-noconflict/snippets/fsl.js +14 -0
  237. package/src-noconflict/snippets/ftl.js +9 -0
  238. package/src-noconflict/snippets/gcode.js +9 -0
  239. package/src-noconflict/snippets/gherkin.js +9 -0
  240. package/src-noconflict/snippets/gitignore.js +9 -0
  241. package/src-noconflict/snippets/glsl.js +9 -0
  242. package/src-noconflict/snippets/gobstones.js +1718 -0
  243. package/src-noconflict/snippets/golang.js +9 -0
  244. package/src-noconflict/snippets/graphqlschema.js +46 -0
  245. package/src-noconflict/snippets/groovy.js +9 -0
  246. package/src-noconflict/snippets/haml.js +34 -0
  247. package/src-noconflict/snippets/handlebars.js +9 -0
  248. package/src-noconflict/snippets/haskell.js +96 -0
  249. package/src-noconflict/snippets/haskell_cabal.js +9 -0
  250. package/src-noconflict/snippets/haxe.js +9 -0
  251. package/src-noconflict/snippets/hjson.js +9 -0
  252. package/src-noconflict/snippets/html.js +867 -0
  253. package/src-noconflict/snippets/html_elixir.js +9 -0
  254. package/src-noconflict/snippets/html_ruby.js +9 -0
  255. package/src-noconflict/snippets/ini.js +9 -0
  256. package/src-noconflict/snippets/io.js +76 -0
  257. package/src-noconflict/snippets/jack.js +9 -0
  258. package/src-noconflict/snippets/jade.js +9 -0
  259. package/src-noconflict/snippets/java.js +254 -0
  260. package/src-noconflict/snippets/javascript.js +209 -0
  261. package/src-noconflict/snippets/json.js +9 -0
  262. package/src-noconflict/snippets/jsoniq.js +75 -0
  263. package/src-noconflict/snippets/jsp.js +113 -0
  264. package/src-noconflict/snippets/jssm.js +9 -0
  265. package/src-noconflict/snippets/jsx.js +9 -0
  266. package/src-noconflict/snippets/julia.js +9 -0
  267. package/src-noconflict/snippets/kotlin.js +9 -0
  268. package/src-noconflict/snippets/latex.js +9 -0
  269. package/src-noconflict/snippets/less.js +9 -0
  270. package/src-noconflict/snippets/liquid.js +895 -0
  271. package/src-noconflict/snippets/lisp.js +9 -0
  272. package/src-noconflict/snippets/livescript.js +9 -0
  273. package/src-noconflict/snippets/logiql.js +9 -0
  274. package/src-noconflict/snippets/logtalk.js +9 -0
  275. package/src-noconflict/snippets/lsl.js +1246 -0
  276. package/src-noconflict/snippets/lua.js +35 -0
  277. package/src-noconflict/snippets/luapage.js +9 -0
  278. package/src-noconflict/snippets/lucene.js +9 -0
  279. package/src-noconflict/snippets/makefile.js +18 -0
  280. package/src-noconflict/snippets/markdown.js +102 -0
  281. package/src-noconflict/snippets/mask.js +9 -0
  282. package/src-noconflict/snippets/matlab.js +9 -0
  283. package/src-noconflict/snippets/maze.js +23 -0
  284. package/src-noconflict/snippets/mel.js +9 -0
  285. package/src-noconflict/snippets/mixal.js +9 -0
  286. package/src-noconflict/snippets/mushcode.js +9 -0
  287. package/src-noconflict/snippets/mysql.js +9 -0
  288. package/src-noconflict/snippets/nginx.js +9 -0
  289. package/src-noconflict/snippets/nim.js +9 -0
  290. package/src-noconflict/snippets/nix.js +9 -0
  291. package/src-noconflict/snippets/nsis.js +9 -0
  292. package/src-noconflict/snippets/objectivec.js +9 -0
  293. package/src-noconflict/snippets/ocaml.js +9 -0
  294. package/src-noconflict/snippets/pascal.js +9 -0
  295. package/src-noconflict/snippets/perl.js +361 -0
  296. package/src-noconflict/snippets/pgsql.js +9 -0
  297. package/src-noconflict/snippets/php.js +397 -0
  298. package/src-noconflict/snippets/php_laravel_blade.js +9 -0
  299. package/src-noconflict/snippets/pig.js +9 -0
  300. package/src-noconflict/snippets/plain_text.js +9 -0
  301. package/src-noconflict/snippets/powershell.js +9 -0
  302. package/src-noconflict/snippets/praat.js +9 -0
  303. package/src-noconflict/snippets/prolog.js +9 -0
  304. package/src-noconflict/snippets/properties.js +9 -0
  305. package/src-noconflict/snippets/protobuf.js +9 -0
  306. package/src-noconflict/snippets/puppet.js +9 -0
  307. package/src-noconflict/snippets/python.js +172 -0
  308. package/src-noconflict/snippets/r.js +135 -0
  309. package/src-noconflict/snippets/razor.js +17 -0
  310. package/src-noconflict/snippets/rdoc.js +9 -0
  311. package/src-noconflict/snippets/red.js +9 -0
  312. package/src-noconflict/snippets/redshift.js +9 -0
  313. package/src-noconflict/snippets/rhtml.js +9 -0
  314. package/src-noconflict/snippets/rst.js +36 -0
  315. package/src-noconflict/snippets/ruby.js +942 -0
  316. package/src-noconflict/snippets/rust.js +9 -0
  317. package/src-noconflict/snippets/sass.js +9 -0
  318. package/src-noconflict/snippets/scad.js +9 -0
  319. package/src-noconflict/snippets/scala.js +9 -0
  320. package/src-noconflict/snippets/scheme.js +9 -0
  321. package/src-noconflict/snippets/scss.js +9 -0
  322. package/src-noconflict/snippets/sh.js +97 -0
  323. package/src-noconflict/snippets/sjs.js +9 -0
  324. package/src-noconflict/snippets/slim.js +9 -0
  325. package/src-noconflict/snippets/smarty.js +9 -0
  326. package/src-noconflict/snippets/snippets.js +23 -0
  327. package/src-noconflict/snippets/soy_template.js +9 -0
  328. package/src-noconflict/snippets/space.js +9 -0
  329. package/src-noconflict/snippets/sparql.js +9 -0
  330. package/src-noconflict/snippets/sql.js +40 -0
  331. package/src-noconflict/snippets/sqlserver.js +83 -0
  332. package/src-noconflict/snippets/stylus.js +9 -0
  333. package/src-noconflict/snippets/svg.js +9 -0
  334. package/src-noconflict/snippets/swift.js +9 -0
  335. package/src-noconflict/snippets/tcl.js +106 -0
  336. package/src-noconflict/snippets/terraform.js +9 -0
  337. package/src-noconflict/snippets/tex.js +204 -0
  338. package/src-noconflict/snippets/text.js +9 -0
  339. package/src-noconflict/snippets/textile.js +44 -0
  340. package/src-noconflict/snippets/toml.js +9 -0
  341. package/src-noconflict/snippets/tsx.js +9 -0
  342. package/src-noconflict/snippets/turtle.js +9 -0
  343. package/src-noconflict/snippets/twig.js +9 -0
  344. package/src-noconflict/snippets/typescript.js +9 -0
  345. package/src-noconflict/snippets/vala.js +200 -0
  346. package/src-noconflict/snippets/vbscript.js +9 -0
  347. package/src-noconflict/snippets/velocity.js +43 -0
  348. package/src-noconflict/snippets/verilog.js +9 -0
  349. package/src-noconflict/snippets/vhdl.js +9 -0
  350. package/src-noconflict/snippets/visualforce.js +9 -0
  351. package/src-noconflict/snippets/wollok.js +98 -0
  352. package/src-noconflict/snippets/xml.js +9 -0
  353. package/src-noconflict/snippets/xquery.js +75 -0
  354. package/src-noconflict/snippets/yaml.js +9 -0
  355. package/src-noconflict/snippets/zeek.js +9 -0
  356. package/src-noconflict/theme-ambiance.js +185 -0
  357. package/src-noconflict/theme-chaos.js +163 -0
  358. package/src-noconflict/theme-chrome.js +135 -0
  359. package/src-noconflict/theme-clouds.js +102 -0
  360. package/src-noconflict/theme-clouds_midnight.js +103 -0
  361. package/src-noconflict/theme-cobalt.js +120 -0
  362. package/src-noconflict/theme-crimson_editor.js +125 -0
  363. package/src-noconflict/theme-dawn.js +115 -0
  364. package/src-noconflict/theme-dracula.js +135 -0
  365. package/src-noconflict/theme-dreamweaver.js +148 -0
  366. package/src-noconflict/theme-eclipse.js +105 -0
  367. package/src-noconflict/theme-github.js +110 -0
  368. package/src-noconflict/theme-gob.js +119 -0
  369. package/src-noconflict/theme-gruvbox.js +89 -0
  370. package/src-noconflict/theme-idle_fingers.js +103 -0
  371. package/src-noconflict/theme-iplastic.js +128 -0
  372. package/src-noconflict/theme-katzenmilch.js +128 -0
  373. package/src-noconflict/theme-kr_theme.js +111 -0
  374. package/src-noconflict/theme-kuroir.js +68 -0
  375. package/src-noconflict/theme-merbivore.js +102 -0
  376. package/src-noconflict/theme-merbivore_soft.js +103 -0
  377. package/src-noconflict/theme-mono_industrial.js +114 -0
  378. package/src-noconflict/theme-monokai.js +112 -0
  379. package/src-noconflict/theme-pastel_on_dark.js +115 -0
  380. package/src-noconflict/theme-solarized_dark.js +95 -0
  381. package/src-noconflict/theme-solarized_light.js +98 -0
  382. package/src-noconflict/theme-sqlserver.js +145 -0
  383. package/src-noconflict/theme-terminal.js +121 -0
  384. package/src-noconflict/theme-textmate.js +137 -0
  385. package/src-noconflict/theme-tomorrow.js +115 -0
  386. package/src-noconflict/theme-tomorrow_night.js +115 -0
  387. package/src-noconflict/theme-tomorrow_night_blue.js +113 -0
  388. package/src-noconflict/theme-tomorrow_night_bright.js +128 -0
  389. package/src-noconflict/theme-tomorrow_night_eighties.js +115 -0
  390. package/src-noconflict/theme-twilight.js +116 -0
  391. package/src-noconflict/theme-vibrant_ink.js +101 -0
  392. package/src-noconflict/theme-xcode.js +95 -0
  393. package/src-noconflict/worker-coffee.js +1470 -0
  394. package/src-noconflict/worker-css.js +9000 -0
  395. package/src-noconflict/worker-html.js +10922 -0
  396. package/src-noconflict/worker-javascript.js +15001 -0
  397. package/src-noconflict/worker-json.js +1715 -0
  398. package/src-noconflict/worker-lua.js +3608 -0
  399. package/src-noconflict/worker-php.js +3687 -0
  400. package/src-noconflict/worker-xml.js +3208 -0
  401. package/src-noconflict/worker-xquery.js +57668 -0
@@ -0,0 +1,839 @@
1
+ ace.define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highlight_rules"], function(require, exports, module) {
2
+ "use strict";
3
+
4
+ var oop = require("../lib/oop");
5
+ var lang = require("../lib/lang");
6
+ var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
7
+ var supportType = exports.supportType = "align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index";
8
+ var supportFunction = exports.supportFunction = "rgb|rgba|url|attr|counter|counters";
9
+ var supportConstant = exports.supportConstant = "absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom";
10
+ var supportConstantColor = exports.supportConstantColor = "aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen";
11
+ var supportConstantFonts = exports.supportConstantFonts = "arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace";
12
+
13
+ var numRe = exports.numRe = "\\-?(?:(?:[0-9]+(?:\\.[0-9]+)?)|(?:\\.[0-9]+))";
14
+ var pseudoElements = exports.pseudoElements = "(\\:+)\\b(after|before|first-letter|first-line|moz-selection|selection)\\b";
15
+ var pseudoClasses = exports.pseudoClasses = "(:)\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\b";
16
+
17
+ var CssHighlightRules = function() {
18
+
19
+ var keywordMapper = this.createKeywordMapper({
20
+ "support.function": supportFunction,
21
+ "support.constant": supportConstant,
22
+ "support.type": supportType,
23
+ "support.constant.color": supportConstantColor,
24
+ "support.constant.fonts": supportConstantFonts
25
+ }, "text", true);
26
+
27
+ this.$rules = {
28
+ "start" : [{
29
+ include : ["strings", "url", "comments"]
30
+ }, {
31
+ token: "paren.lparen",
32
+ regex: "\\{",
33
+ next: "ruleset"
34
+ }, {
35
+ token: "paren.rparen",
36
+ regex: "\\}"
37
+ }, {
38
+ token: "string",
39
+ regex: "@(?!viewport)",
40
+ next: "media"
41
+ }, {
42
+ token: "keyword",
43
+ regex: "#[a-z0-9-_]+"
44
+ }, {
45
+ token: "keyword",
46
+ regex: "%"
47
+ }, {
48
+ token: "variable",
49
+ regex: "\\.[a-z0-9-_]+"
50
+ }, {
51
+ token: "string",
52
+ regex: ":[a-z0-9-_]+"
53
+ }, {
54
+ token : "constant.numeric",
55
+ regex : numRe
56
+ }, {
57
+ token: "constant",
58
+ regex: "[a-z0-9-_]+"
59
+ }, {
60
+ caseInsensitive: true
61
+ }],
62
+
63
+ "media": [{
64
+ include : ["strings", "url", "comments"]
65
+ }, {
66
+ token: "paren.lparen",
67
+ regex: "\\{",
68
+ next: "start"
69
+ }, {
70
+ token: "paren.rparen",
71
+ regex: "\\}",
72
+ next: "start"
73
+ }, {
74
+ token: "string",
75
+ regex: ";",
76
+ next: "start"
77
+ }, {
78
+ token: "keyword",
79
+ regex: "(?:media|supports|document|charset|import|namespace|media|supports|document"
80
+ + "|page|font|keyframes|viewport|counter-style|font-feature-values"
81
+ + "|swash|ornaments|annotation|stylistic|styleset|character-variant)"
82
+ }],
83
+
84
+ "comments" : [{
85
+ token: "comment", // multi line comment
86
+ regex: "\\/\\*",
87
+ push: [{
88
+ token : "comment",
89
+ regex : "\\*\\/",
90
+ next : "pop"
91
+ }, {
92
+ defaultToken : "comment"
93
+ }]
94
+ }],
95
+
96
+ "ruleset" : [{
97
+ regex : "-(webkit|ms|moz|o)-",
98
+ token : "text"
99
+ }, {
100
+ token : "punctuation.operator",
101
+ regex : "[:;]"
102
+ }, {
103
+ token : "paren.rparen",
104
+ regex : "\\}",
105
+ next : "start"
106
+ }, {
107
+ include : ["strings", "url", "comments"]
108
+ }, {
109
+ token : ["constant.numeric", "keyword"],
110
+ regex : "(" + numRe + ")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)"
111
+ }, {
112
+ token : "constant.numeric",
113
+ regex : numRe
114
+ }, {
115
+ token : "constant.numeric", // hex6 color
116
+ regex : "#[a-f0-9]{6}"
117
+ }, {
118
+ token : "constant.numeric", // hex3 color
119
+ regex : "#[a-f0-9]{3}"
120
+ }, {
121
+ token : ["punctuation", "entity.other.attribute-name.pseudo-element.css"],
122
+ regex : pseudoElements
123
+ }, {
124
+ token : ["punctuation", "entity.other.attribute-name.pseudo-class.css"],
125
+ regex : pseudoClasses
126
+ }, {
127
+ include: "url"
128
+ }, {
129
+ token : keywordMapper,
130
+ regex : "\\-?[a-zA-Z_][a-zA-Z0-9_\\-]*"
131
+ }, {
132
+ caseInsensitive: true
133
+ }],
134
+
135
+ url: [{
136
+ token : "support.function",
137
+ regex : "(?:url(:?-prefix)?|domain|regexp)\\(",
138
+ push: [{
139
+ token : "support.function",
140
+ regex : "\\)",
141
+ next : "pop"
142
+ }, {
143
+ defaultToken: "string"
144
+ }]
145
+ }],
146
+
147
+ strings: [{
148
+ token : "string.start",
149
+ regex : "'",
150
+ push : [{
151
+ token : "string.end",
152
+ regex : "'|$",
153
+ next: "pop"
154
+ }, {
155
+ include : "escapes"
156
+ }, {
157
+ token : "constant.language.escape",
158
+ regex : /\\$/,
159
+ consumeLineEnd: true
160
+ }, {
161
+ defaultToken: "string"
162
+ }]
163
+ }, {
164
+ token : "string.start",
165
+ regex : '"',
166
+ push : [{
167
+ token : "string.end",
168
+ regex : '"|$',
169
+ next: "pop"
170
+ }, {
171
+ include : "escapes"
172
+ }, {
173
+ token : "constant.language.escape",
174
+ regex : /\\$/,
175
+ consumeLineEnd: true
176
+ }, {
177
+ defaultToken: "string"
178
+ }]
179
+ }],
180
+ escapes: [{
181
+ token : "constant.language.escape",
182
+ regex : /\\([a-fA-F\d]{1,6}|[^a-fA-F\d])/
183
+ }]
184
+
185
+ };
186
+
187
+ this.normalizeRules();
188
+ };
189
+
190
+ oop.inherits(CssHighlightRules, TextHighlightRules);
191
+
192
+ exports.CssHighlightRules = CssHighlightRules;
193
+
194
+ });
195
+
196
+ ace.define("ace/mode/less_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules","ace/mode/css_highlight_rules"], function(require, exports, module) {
197
+ "use strict";
198
+
199
+ var oop = require("../lib/oop");
200
+ var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
201
+ var CssHighlightRules = require('./css_highlight_rules');
202
+
203
+ var LessHighlightRules = function() {
204
+
205
+
206
+ var keywordList = "@import|@media|@font-face|@keyframes|@-webkit-keyframes|@supports|" +
207
+ "@charset|@plugin|@namespace|@document|@page|@viewport|@-ms-viewport|" +
208
+ "or|and|when|not";
209
+
210
+ var keywords = keywordList.split('|');
211
+
212
+ var properties = CssHighlightRules.supportType.split('|');
213
+
214
+ var keywordMapper = this.createKeywordMapper({
215
+ "support.constant": CssHighlightRules.supportConstant,
216
+ "keyword": keywordList,
217
+ "support.constant.color": CssHighlightRules.supportConstantColor,
218
+ "support.constant.fonts": CssHighlightRules.supportConstantFonts
219
+ }, "identifier", true);
220
+
221
+ var numRe = "\\-?(?:(?:[0-9]+)|(?:[0-9]*\\.[0-9]+))";
222
+
223
+ this.$rules = {
224
+ "start" : [
225
+ {
226
+ token : "comment",
227
+ regex : "\\/\\/.*$"
228
+ },
229
+ {
230
+ token : "comment", // multi line comment
231
+ regex : "\\/\\*",
232
+ next : "comment"
233
+ }, {
234
+ token : "string", // single line
235
+ regex : '["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]'
236
+ }, {
237
+ token : "string", // single line
238
+ regex : "['](?:(?:\\\\.)|(?:[^'\\\\]))*?[']"
239
+ }, {
240
+ token : ["constant.numeric", "keyword"],
241
+ regex : "(" + numRe + ")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vm|vw|%)"
242
+ }, {
243
+ token : "constant.numeric", // hex6 color
244
+ regex : "#[a-f0-9]{6}"
245
+ }, {
246
+ token : "constant.numeric", // hex3 color
247
+ regex : "#[a-f0-9]{3}"
248
+ }, {
249
+ token : "constant.numeric",
250
+ regex : numRe
251
+ }, {
252
+ token : ["support.function", "paren.lparen", "string", "paren.rparen"],
253
+ regex : "(url)(\\()(.*)(\\))"
254
+ }, {
255
+ token : ["support.function", "paren.lparen"],
256
+ regex : "(:extend|[a-z0-9_\\-]+)(\\()"
257
+ }, {
258
+ token : function(value) {
259
+ if (keywords.indexOf(value.toLowerCase()) > -1)
260
+ return "keyword";
261
+ else
262
+ return "variable";
263
+ },
264
+ regex : "[@\\$][a-z0-9_\\-@\\$]*\\b"
265
+ }, {
266
+ token : "variable",
267
+ regex : "[@\\$]\\{[a-z0-9_\\-@\\$]*\\}"
268
+ }, {
269
+ token : function(first, second) {
270
+ if(properties.indexOf(first.toLowerCase()) > -1) {
271
+ return ["support.type.property", "text"];
272
+ }
273
+ else {
274
+ return ["support.type.unknownProperty", "text"];
275
+ }
276
+ },
277
+ regex : "([a-z0-9-_]+)(\\s*:)"
278
+ }, {
279
+ token : "keyword",
280
+ regex : "&" // special case - always treat as keyword
281
+ }, {
282
+ token : keywordMapper,
283
+ regex : "\\-?[@a-z_][@a-z0-9_\\-]*"
284
+ }, {
285
+ token: "variable.language",
286
+ regex: "#[a-z0-9-_]+"
287
+ }, {
288
+ token: "variable.language",
289
+ regex: "\\.[a-z0-9-_]+"
290
+ }, {
291
+ token: "variable.language",
292
+ regex: ":[a-z_][a-z0-9-_]*"
293
+ }, {
294
+ token: "constant",
295
+ regex: "[a-z0-9-_]+"
296
+ }, {
297
+ token : "keyword.operator",
298
+ regex : "<|>|<=|>=|=|!=|-|%|\\+|\\*"
299
+ }, {
300
+ token : "paren.lparen",
301
+ regex : "[[({]"
302
+ }, {
303
+ token : "paren.rparen",
304
+ regex : "[\\])}]"
305
+ }, {
306
+ token : "text",
307
+ regex : "\\s+"
308
+ }, {
309
+ caseInsensitive: true
310
+ }
311
+ ],
312
+ "comment" : [
313
+ {
314
+ token : "comment", // closing comment
315
+ regex : "\\*\\/",
316
+ next : "start"
317
+ }, {
318
+ defaultToken : "comment"
319
+ }
320
+ ]
321
+ };
322
+ this.normalizeRules();
323
+ };
324
+
325
+ oop.inherits(LessHighlightRules, TextHighlightRules);
326
+
327
+ exports.LessHighlightRules = LessHighlightRules;
328
+
329
+ });
330
+
331
+ ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"], function(require, exports, module) {
332
+ "use strict";
333
+
334
+ var Range = require("../range").Range;
335
+
336
+ var MatchingBraceOutdent = function() {};
337
+
338
+ (function() {
339
+
340
+ this.checkOutdent = function(line, input) {
341
+ if (! /^\s+$/.test(line))
342
+ return false;
343
+
344
+ return /^\s*\}/.test(input);
345
+ };
346
+
347
+ this.autoOutdent = function(doc, row) {
348
+ var line = doc.getLine(row);
349
+ var match = line.match(/^(\s*\})/);
350
+
351
+ if (!match) return 0;
352
+
353
+ var column = match[1].length;
354
+ var openBracePos = doc.findMatchingBracket({row: row, column: column});
355
+
356
+ if (!openBracePos || openBracePos.row == row) return 0;
357
+
358
+ var indent = this.$getIndent(doc.getLine(openBracePos.row));
359
+ doc.replace(new Range(row, 0, row, column-1), indent);
360
+ };
361
+
362
+ this.$getIndent = function(line) {
363
+ return line.match(/^\s*/)[0];
364
+ };
365
+
366
+ }).call(MatchingBraceOutdent.prototype);
367
+
368
+ exports.MatchingBraceOutdent = MatchingBraceOutdent;
369
+ });
370
+
371
+ ace.define("ace/mode/behaviour/css",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/mode/behaviour/cstyle","ace/token_iterator"], function(require, exports, module) {
372
+ "use strict";
373
+
374
+ var oop = require("../../lib/oop");
375
+ var Behaviour = require("../behaviour").Behaviour;
376
+ var CstyleBehaviour = require("./cstyle").CstyleBehaviour;
377
+ var TokenIterator = require("../../token_iterator").TokenIterator;
378
+
379
+ var CssBehaviour = function () {
380
+
381
+ this.inherit(CstyleBehaviour);
382
+
383
+ this.add("colon", "insertion", function (state, action, editor, session, text) {
384
+ if (text === ':' && editor.selection.isEmpty()) {
385
+ var cursor = editor.getCursorPosition();
386
+ var iterator = new TokenIterator(session, cursor.row, cursor.column);
387
+ var token = iterator.getCurrentToken();
388
+ if (token && token.value.match(/\s+/)) {
389
+ token = iterator.stepBackward();
390
+ }
391
+ if (token && token.type === 'support.type') {
392
+ var line = session.doc.getLine(cursor.row);
393
+ var rightChar = line.substring(cursor.column, cursor.column + 1);
394
+ if (rightChar === ':') {
395
+ return {
396
+ text: '',
397
+ selection: [1, 1]
398
+ };
399
+ }
400
+ if (/^(\s+[^;]|\s*$)/.test(line.substring(cursor.column))) {
401
+ return {
402
+ text: ':;',
403
+ selection: [1, 1]
404
+ };
405
+ }
406
+ }
407
+ }
408
+ });
409
+
410
+ this.add("colon", "deletion", function (state, action, editor, session, range) {
411
+ var selected = session.doc.getTextRange(range);
412
+ if (!range.isMultiLine() && selected === ':') {
413
+ var cursor = editor.getCursorPosition();
414
+ var iterator = new TokenIterator(session, cursor.row, cursor.column);
415
+ var token = iterator.getCurrentToken();
416
+ if (token && token.value.match(/\s+/)) {
417
+ token = iterator.stepBackward();
418
+ }
419
+ if (token && token.type === 'support.type') {
420
+ var line = session.doc.getLine(range.start.row);
421
+ var rightChar = line.substring(range.end.column, range.end.column + 1);
422
+ if (rightChar === ';') {
423
+ range.end.column ++;
424
+ return range;
425
+ }
426
+ }
427
+ }
428
+ });
429
+
430
+ this.add("semicolon", "insertion", function (state, action, editor, session, text) {
431
+ if (text === ';' && editor.selection.isEmpty()) {
432
+ var cursor = editor.getCursorPosition();
433
+ var line = session.doc.getLine(cursor.row);
434
+ var rightChar = line.substring(cursor.column, cursor.column + 1);
435
+ if (rightChar === ';') {
436
+ return {
437
+ text: '',
438
+ selection: [1, 1]
439
+ };
440
+ }
441
+ }
442
+ });
443
+
444
+ this.add("!important", "insertion", function (state, action, editor, session, text) {
445
+ if (text === '!' && editor.selection.isEmpty()) {
446
+ var cursor = editor.getCursorPosition();
447
+ var line = session.doc.getLine(cursor.row);
448
+
449
+ if (/^\s*(;|}|$)/.test(line.substring(cursor.column))) {
450
+ return {
451
+ text: '!important',
452
+ selection: [10, 10]
453
+ };
454
+ }
455
+ }
456
+ });
457
+
458
+ };
459
+ oop.inherits(CssBehaviour, CstyleBehaviour);
460
+
461
+ exports.CssBehaviour = CssBehaviour;
462
+ });
463
+
464
+ ace.define("ace/mode/css_completions",["require","exports","module"], function(require, exports, module) {
465
+ "use strict";
466
+
467
+ var propertyMap = {
468
+ "background": {"#$0": 1},
469
+ "background-color": {"#$0": 1, "transparent": 1, "fixed": 1},
470
+ "background-image": {"url('/$0')": 1},
471
+ "background-repeat": {"repeat": 1, "repeat-x": 1, "repeat-y": 1, "no-repeat": 1, "inherit": 1},
472
+ "background-position": {"bottom":2, "center":2, "left":2, "right":2, "top":2, "inherit":2},
473
+ "background-attachment": {"scroll": 1, "fixed": 1},
474
+ "background-size": {"cover": 1, "contain": 1},
475
+ "background-clip": {"border-box": 1, "padding-box": 1, "content-box": 1},
476
+ "background-origin": {"border-box": 1, "padding-box": 1, "content-box": 1},
477
+ "border": {"solid $0": 1, "dashed $0": 1, "dotted $0": 1, "#$0": 1},
478
+ "border-color": {"#$0": 1},
479
+ "border-style": {"solid":2, "dashed":2, "dotted":2, "double":2, "groove":2, "hidden":2, "inherit":2, "inset":2, "none":2, "outset":2, "ridged":2},
480
+ "border-collapse": {"collapse": 1, "separate": 1},
481
+ "bottom": {"px": 1, "em": 1, "%": 1},
482
+ "clear": {"left": 1, "right": 1, "both": 1, "none": 1},
483
+ "color": {"#$0": 1, "rgb(#$00,0,0)": 1},
484
+ "cursor": {"default": 1, "pointer": 1, "move": 1, "text": 1, "wait": 1, "help": 1, "progress": 1, "n-resize": 1, "ne-resize": 1, "e-resize": 1, "se-resize": 1, "s-resize": 1, "sw-resize": 1, "w-resize": 1, "nw-resize": 1},
485
+ "display": {"none": 1, "block": 1, "inline": 1, "inline-block": 1, "table-cell": 1},
486
+ "empty-cells": {"show": 1, "hide": 1},
487
+ "float": {"left": 1, "right": 1, "none": 1},
488
+ "font-family": {"Arial":2,"Comic Sans MS":2,"Consolas":2,"Courier New":2,"Courier":2,"Georgia":2,"Monospace":2,"Sans-Serif":2, "Segoe UI":2,"Tahoma":2,"Times New Roman":2,"Trebuchet MS":2,"Verdana": 1},
489
+ "font-size": {"px": 1, "em": 1, "%": 1},
490
+ "font-weight": {"bold": 1, "normal": 1},
491
+ "font-style": {"italic": 1, "normal": 1},
492
+ "font-variant": {"normal": 1, "small-caps": 1},
493
+ "height": {"px": 1, "em": 1, "%": 1},
494
+ "left": {"px": 1, "em": 1, "%": 1},
495
+ "letter-spacing": {"normal": 1},
496
+ "line-height": {"normal": 1},
497
+ "list-style-type": {"none": 1, "disc": 1, "circle": 1, "square": 1, "decimal": 1, "decimal-leading-zero": 1, "lower-roman": 1, "upper-roman": 1, "lower-greek": 1, "lower-latin": 1, "upper-latin": 1, "georgian": 1, "lower-alpha": 1, "upper-alpha": 1},
498
+ "margin": {"px": 1, "em": 1, "%": 1},
499
+ "margin-right": {"px": 1, "em": 1, "%": 1},
500
+ "margin-left": {"px": 1, "em": 1, "%": 1},
501
+ "margin-top": {"px": 1, "em": 1, "%": 1},
502
+ "margin-bottom": {"px": 1, "em": 1, "%": 1},
503
+ "max-height": {"px": 1, "em": 1, "%": 1},
504
+ "max-width": {"px": 1, "em": 1, "%": 1},
505
+ "min-height": {"px": 1, "em": 1, "%": 1},
506
+ "min-width": {"px": 1, "em": 1, "%": 1},
507
+ "overflow": {"hidden": 1, "visible": 1, "auto": 1, "scroll": 1},
508
+ "overflow-x": {"hidden": 1, "visible": 1, "auto": 1, "scroll": 1},
509
+ "overflow-y": {"hidden": 1, "visible": 1, "auto": 1, "scroll": 1},
510
+ "padding": {"px": 1, "em": 1, "%": 1},
511
+ "padding-top": {"px": 1, "em": 1, "%": 1},
512
+ "padding-right": {"px": 1, "em": 1, "%": 1},
513
+ "padding-bottom": {"px": 1, "em": 1, "%": 1},
514
+ "padding-left": {"px": 1, "em": 1, "%": 1},
515
+ "page-break-after": {"auto": 1, "always": 1, "avoid": 1, "left": 1, "right": 1},
516
+ "page-break-before": {"auto": 1, "always": 1, "avoid": 1, "left": 1, "right": 1},
517
+ "position": {"absolute": 1, "relative": 1, "fixed": 1, "static": 1},
518
+ "right": {"px": 1, "em": 1, "%": 1},
519
+ "table-layout": {"fixed": 1, "auto": 1},
520
+ "text-decoration": {"none": 1, "underline": 1, "line-through": 1, "blink": 1},
521
+ "text-align": {"left": 1, "right": 1, "center": 1, "justify": 1},
522
+ "text-transform": {"capitalize": 1, "uppercase": 1, "lowercase": 1, "none": 1},
523
+ "top": {"px": 1, "em": 1, "%": 1},
524
+ "vertical-align": {"top": 1, "bottom": 1},
525
+ "visibility": {"hidden": 1, "visible": 1},
526
+ "white-space": {"nowrap": 1, "normal": 1, "pre": 1, "pre-line": 1, "pre-wrap": 1},
527
+ "width": {"px": 1, "em": 1, "%": 1},
528
+ "word-spacing": {"normal": 1},
529
+ "filter": {"alpha(opacity=$0100)": 1},
530
+
531
+ "text-shadow": {"$02px 2px 2px #777": 1},
532
+ "text-overflow": {"ellipsis-word": 1, "clip": 1, "ellipsis": 1},
533
+ "-moz-border-radius": 1,
534
+ "-moz-border-radius-topright": 1,
535
+ "-moz-border-radius-bottomright": 1,
536
+ "-moz-border-radius-topleft": 1,
537
+ "-moz-border-radius-bottomleft": 1,
538
+ "-webkit-border-radius": 1,
539
+ "-webkit-border-top-right-radius": 1,
540
+ "-webkit-border-top-left-radius": 1,
541
+ "-webkit-border-bottom-right-radius": 1,
542
+ "-webkit-border-bottom-left-radius": 1,
543
+ "-moz-box-shadow": 1,
544
+ "-webkit-box-shadow": 1,
545
+ "transform": {"rotate($00deg)": 1, "skew($00deg)": 1},
546
+ "-moz-transform": {"rotate($00deg)": 1, "skew($00deg)": 1},
547
+ "-webkit-transform": {"rotate($00deg)": 1, "skew($00deg)": 1 }
548
+ };
549
+
550
+ var CssCompletions = function() {
551
+
552
+ };
553
+
554
+ (function() {
555
+
556
+ this.completionsDefined = false;
557
+
558
+ this.defineCompletions = function() {
559
+ if (document) {
560
+ var style = document.createElement('c').style;
561
+
562
+ for (var i in style) {
563
+ if (typeof style[i] !== 'string')
564
+ continue;
565
+
566
+ var name = i.replace(/[A-Z]/g, function(x) {
567
+ return '-' + x.toLowerCase();
568
+ });
569
+
570
+ if (!propertyMap.hasOwnProperty(name))
571
+ propertyMap[name] = 1;
572
+ }
573
+ }
574
+
575
+ this.completionsDefined = true;
576
+ };
577
+
578
+ this.getCompletions = function(state, session, pos, prefix) {
579
+ if (!this.completionsDefined) {
580
+ this.defineCompletions();
581
+ }
582
+
583
+ if (state==='ruleset' || session.$mode.$id == "ace/mode/scss") {
584
+ var line = session.getLine(pos.row).substr(0, pos.column);
585
+ if (/:[^;]+$/.test(line)) {
586
+ /([\w\-]+):[^:]*$/.test(line);
587
+
588
+ return this.getPropertyValueCompletions(state, session, pos, prefix);
589
+ } else {
590
+ return this.getPropertyCompletions(state, session, pos, prefix);
591
+ }
592
+ }
593
+
594
+ return [];
595
+ };
596
+
597
+ this.getPropertyCompletions = function(state, session, pos, prefix) {
598
+ var properties = Object.keys(propertyMap);
599
+ return properties.map(function(property){
600
+ return {
601
+ caption: property,
602
+ snippet: property + ': $0;',
603
+ meta: "property",
604
+ score: 1000000
605
+ };
606
+ });
607
+ };
608
+
609
+ this.getPropertyValueCompletions = function(state, session, pos, prefix) {
610
+ var line = session.getLine(pos.row).substr(0, pos.column);
611
+ var property = (/([\w\-]+):[^:]*$/.exec(line) || {})[1];
612
+
613
+ if (!property)
614
+ return [];
615
+ var values = [];
616
+ if (property in propertyMap && typeof propertyMap[property] === "object") {
617
+ values = Object.keys(propertyMap[property]);
618
+ }
619
+ return values.map(function(value){
620
+ return {
621
+ caption: value,
622
+ snippet: value,
623
+ meta: "property value",
624
+ score: 1000000
625
+ };
626
+ });
627
+ };
628
+
629
+ }).call(CssCompletions.prototype);
630
+
631
+ exports.CssCompletions = CssCompletions;
632
+ });
633
+
634
+ ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"], function(require, exports, module) {
635
+ "use strict";
636
+
637
+ var oop = require("../../lib/oop");
638
+ var Range = require("../../range").Range;
639
+ var BaseFoldMode = require("./fold_mode").FoldMode;
640
+
641
+ var FoldMode = exports.FoldMode = function(commentRegex) {
642
+ if (commentRegex) {
643
+ this.foldingStartMarker = new RegExp(
644
+ this.foldingStartMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.start)
645
+ );
646
+ this.foldingStopMarker = new RegExp(
647
+ this.foldingStopMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.end)
648
+ );
649
+ }
650
+ };
651
+ oop.inherits(FoldMode, BaseFoldMode);
652
+
653
+ (function() {
654
+
655
+ this.foldingStartMarker = /([\{\[\(])[^\}\]\)]*$|^\s*(\/\*)/;
656
+ this.foldingStopMarker = /^[^\[\{\(]*([\}\]\)])|^[\s\*]*(\*\/)/;
657
+ this.singleLineBlockCommentRe= /^\s*(\/\*).*\*\/\s*$/;
658
+ this.tripleStarBlockCommentRe = /^\s*(\/\*\*\*).*\*\/\s*$/;
659
+ this.startRegionRe = /^\s*(\/\*|\/\/)#?region\b/;
660
+ this._getFoldWidgetBase = this.getFoldWidget;
661
+ this.getFoldWidget = function(session, foldStyle, row) {
662
+ var line = session.getLine(row);
663
+
664
+ if (this.singleLineBlockCommentRe.test(line)) {
665
+ if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))
666
+ return "";
667
+ }
668
+
669
+ var fw = this._getFoldWidgetBase(session, foldStyle, row);
670
+
671
+ if (!fw && this.startRegionRe.test(line))
672
+ return "start"; // lineCommentRegionStart
673
+
674
+ return fw;
675
+ };
676
+
677
+ this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {
678
+ var line = session.getLine(row);
679
+
680
+ if (this.startRegionRe.test(line))
681
+ return this.getCommentRegionBlock(session, line, row);
682
+
683
+ var match = line.match(this.foldingStartMarker);
684
+ if (match) {
685
+ var i = match.index;
686
+
687
+ if (match[1])
688
+ return this.openingBracketBlock(session, match[1], row, i);
689
+
690
+ var range = session.getCommentFoldRange(row, i + match[0].length, 1);
691
+
692
+ if (range && !range.isMultiLine()) {
693
+ if (forceMultiline) {
694
+ range = this.getSectionRange(session, row);
695
+ } else if (foldStyle != "all")
696
+ range = null;
697
+ }
698
+
699
+ return range;
700
+ }
701
+
702
+ if (foldStyle === "markbegin")
703
+ return;
704
+
705
+ var match = line.match(this.foldingStopMarker);
706
+ if (match) {
707
+ var i = match.index + match[0].length;
708
+
709
+ if (match[1])
710
+ return this.closingBracketBlock(session, match[1], row, i);
711
+
712
+ return session.getCommentFoldRange(row, i, -1);
713
+ }
714
+ };
715
+
716
+ this.getSectionRange = function(session, row) {
717
+ var line = session.getLine(row);
718
+ var startIndent = line.search(/\S/);
719
+ var startRow = row;
720
+ var startColumn = line.length;
721
+ row = row + 1;
722
+ var endRow = row;
723
+ var maxRow = session.getLength();
724
+ while (++row < maxRow) {
725
+ line = session.getLine(row);
726
+ var indent = line.search(/\S/);
727
+ if (indent === -1)
728
+ continue;
729
+ if (startIndent > indent)
730
+ break;
731
+ var subRange = this.getFoldWidgetRange(session, "all", row);
732
+
733
+ if (subRange) {
734
+ if (subRange.start.row <= startRow) {
735
+ break;
736
+ } else if (subRange.isMultiLine()) {
737
+ row = subRange.end.row;
738
+ } else if (startIndent == indent) {
739
+ break;
740
+ }
741
+ }
742
+ endRow = row;
743
+ }
744
+
745
+ return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);
746
+ };
747
+ this.getCommentRegionBlock = function(session, line, row) {
748
+ var startColumn = line.search(/\s*$/);
749
+ var maxRow = session.getLength();
750
+ var startRow = row;
751
+
752
+ var re = /^\s*(?:\/\*|\/\/|--)#?(end)?region\b/;
753
+ var depth = 1;
754
+ while (++row < maxRow) {
755
+ line = session.getLine(row);
756
+ var m = re.exec(line);
757
+ if (!m) continue;
758
+ if (m[1]) depth--;
759
+ else depth++;
760
+
761
+ if (!depth) break;
762
+ }
763
+
764
+ var endRow = row;
765
+ if (endRow > startRow) {
766
+ return new Range(startRow, startColumn, endRow, line.length);
767
+ }
768
+ };
769
+
770
+ }).call(FoldMode.prototype);
771
+
772
+ });
773
+
774
+ ace.define("ace/mode/less",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/less_highlight_rules","ace/mode/matching_brace_outdent","ace/mode/behaviour/css","ace/mode/css_completions","ace/mode/folding/cstyle"], function(require, exports, module) {
775
+ "use strict";
776
+
777
+ var oop = require("../lib/oop");
778
+ var TextMode = require("./text").Mode;
779
+ var LessHighlightRules = require("./less_highlight_rules").LessHighlightRules;
780
+ var MatchingBraceOutdent = require("./matching_brace_outdent").MatchingBraceOutdent;
781
+ var CssBehaviour = require("./behaviour/css").CssBehaviour;
782
+ var CssCompletions = require("./css_completions").CssCompletions;
783
+
784
+ var CStyleFoldMode = require("./folding/cstyle").FoldMode;
785
+
786
+ var Mode = function() {
787
+ this.HighlightRules = LessHighlightRules;
788
+ this.$outdent = new MatchingBraceOutdent();
789
+ this.$behaviour = new CssBehaviour();
790
+ this.$completer = new CssCompletions();
791
+ this.foldingRules = new CStyleFoldMode();
792
+ };
793
+ oop.inherits(Mode, TextMode);
794
+
795
+ (function() {
796
+
797
+ this.lineCommentStart = "//";
798
+ this.blockComment = {start: "/*", end: "*/"};
799
+
800
+ this.getNextLineIndent = function(state, line, tab) {
801
+ var indent = this.$getIndent(line);
802
+ var tokens = this.getTokenizer().getLineTokens(line, state).tokens;
803
+ if (tokens.length && tokens[tokens.length-1].type == "comment") {
804
+ return indent;
805
+ }
806
+
807
+ var match = line.match(/^.*\{\s*$/);
808
+ if (match) {
809
+ indent += tab;
810
+ }
811
+
812
+ return indent;
813
+ };
814
+
815
+ this.checkOutdent = function(state, line, input) {
816
+ return this.$outdent.checkOutdent(line, input);
817
+ };
818
+
819
+ this.autoOutdent = function(state, doc, row) {
820
+ this.$outdent.autoOutdent(doc, row);
821
+ };
822
+
823
+ this.getCompletions = function(state, session, pos, prefix) {
824
+ return this.$completer.getCompletions("ruleset", session, pos, prefix);
825
+ };
826
+
827
+ this.$id = "ace/mode/less";
828
+ }).call(Mode.prototype);
829
+
830
+ exports.Mode = Mode;
831
+
832
+ }); (function() {
833
+ ace.require(["ace/mode/less"], function(m) {
834
+ if (typeof module == "object" && typeof exports == "object" && module) {
835
+ module.exports = m;
836
+ }
837
+ });
838
+ })();
839
+