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,122 @@
1
+ ace.define("ace/ext/rtl",["require","exports","module","ace/editor","ace/config"], function(require, exports, module) {
2
+ "use strict";
3
+
4
+ var commands = [{
5
+ name: "leftToRight",
6
+ bindKey: { win: "Ctrl-Alt-Shift-L", mac: "Command-Alt-Shift-L" },
7
+ exec: function(editor) {
8
+ editor.session.$bidiHandler.setRtlDirection(editor, false);
9
+ },
10
+ readOnly: true
11
+ }, {
12
+ name: "rightToLeft",
13
+ bindKey: { win: "Ctrl-Alt-Shift-R", mac: "Command-Alt-Shift-R" },
14
+ exec: function(editor) {
15
+ editor.session.$bidiHandler.setRtlDirection(editor, true);
16
+ },
17
+ readOnly: true
18
+ }];
19
+
20
+ var Editor = require("../editor").Editor;
21
+ require("../config").defineOptions(Editor.prototype, "editor", {
22
+ rtlText: {
23
+ set: function(val) {
24
+ if (val) {
25
+ this.on("change", onChange);
26
+ this.on("changeSelection", onChangeSelection);
27
+ this.renderer.on("afterRender", updateLineDirection);
28
+ this.commands.on("exec", onCommandEmitted);
29
+ this.commands.addCommands(commands);
30
+ } else {
31
+ this.off("change", onChange);
32
+ this.off("changeSelection", onChangeSelection);
33
+ this.renderer.off("afterRender", updateLineDirection);
34
+ this.commands.off("exec", onCommandEmitted);
35
+ this.commands.removeCommands(commands);
36
+ clearTextLayer(this.renderer);
37
+ }
38
+ this.renderer.updateFull();
39
+ }
40
+ },
41
+ rtl: {
42
+ set: function(val) {
43
+ this.session.$bidiHandler.$isRtl = val;
44
+ if (val) {
45
+ this.setOption("rtlText", false);
46
+ this.renderer.on("afterRender", updateLineDirection);
47
+ this.session.$bidiHandler.seenBidi = true;
48
+ } else {
49
+ this.renderer.off("afterRender", updateLineDirection);
50
+ clearTextLayer(this.renderer);
51
+ }
52
+ this.renderer.updateFull();
53
+ }
54
+ }
55
+ });
56
+ function onChangeSelection(e, editor) {
57
+ var lead = editor.getSelection().lead;
58
+ if (editor.session.$bidiHandler.isRtlLine(lead.row)) {
59
+ if (lead.column === 0) {
60
+ if (editor.session.$bidiHandler.isMoveLeftOperation && lead.row > 0) {
61
+ editor.getSelection().moveCursorTo(lead.row - 1, editor.session.getLine(lead.row - 1).length);
62
+ } else {
63
+ if (editor.getSelection().isEmpty())
64
+ lead.column += 1;
65
+ else
66
+ lead.setPosition(lead.row, lead.column + 1);
67
+ }
68
+ }
69
+ }
70
+ }
71
+
72
+ function onCommandEmitted(commadEvent) {
73
+ commadEvent.editor.session.$bidiHandler.isMoveLeftOperation = /gotoleft|selectleft|backspace|removewordleft/.test(commadEvent.command.name);
74
+ }
75
+ function onChange(delta, editor) {
76
+ var session = editor.session;
77
+ session.$bidiHandler.currentRow = null;
78
+ if (session.$bidiHandler.isRtlLine(delta.start.row) && delta.action === 'insert' && delta.lines.length > 1) {
79
+ for (var row = delta.start.row; row < delta.end.row; row++) {
80
+ if (session.getLine(row + 1).charAt(0) !== session.$bidiHandler.RLE)
81
+ session.doc.$lines[row + 1] = session.$bidiHandler.RLE + session.getLine(row + 1);
82
+ }
83
+ }
84
+ }
85
+
86
+ function updateLineDirection(e, renderer) {
87
+ var session = renderer.session;
88
+ var $bidiHandler = session.$bidiHandler;
89
+ var cells = renderer.$textLayer.$lines.cells;
90
+ var width = renderer.layerConfig.width - renderer.layerConfig.padding + "px";
91
+ cells.forEach(function(cell) {
92
+ var style = cell.element.style;
93
+ if ($bidiHandler && $bidiHandler.isRtlLine(cell.row)) {
94
+ style.direction = "rtl";
95
+ style.textAlign = "right";
96
+ style.width = width;
97
+ } else {
98
+ style.direction = "";
99
+ style.textAlign = "";
100
+ style.width = "";
101
+ }
102
+ });
103
+ }
104
+
105
+ function clearTextLayer(renderer) {
106
+ var lines = renderer.$textLayer.$lines;
107
+ lines.cells.forEach(clear);
108
+ lines.cellCache.forEach(clear);
109
+ function clear(cell) {
110
+ var style = cell.element.style;
111
+ style.direction = style.textAlign = style.width = "";
112
+ }
113
+ }
114
+
115
+ }); (function() {
116
+ ace.require(["ace/ext/rtl"], function(m) {
117
+ if (typeof module == "object" && typeof exports == "object" && module) {
118
+ module.exports = m;
119
+ }
120
+ });
121
+ })();
122
+
@@ -0,0 +1,514 @@
1
+ ace.define("ace/ext/searchbox",["require","exports","module","ace/lib/dom","ace/lib/lang","ace/lib/event","ace/keyboard/hash_handler","ace/lib/keys"], function(require, exports, module) {
2
+ "use strict";
3
+
4
+ var dom = require("../lib/dom");
5
+ var lang = require("../lib/lang");
6
+ var event = require("../lib/event");
7
+ var searchboxCss = "\
8
+ .ace_search {\
9
+ background-color: #ddd;\
10
+ color: #666;\
11
+ border: 1px solid #cbcbcb;\
12
+ border-top: 0 none;\
13
+ overflow: hidden;\
14
+ margin: 0;\
15
+ padding: 4px 6px 0 4px;\
16
+ position: absolute;\
17
+ top: 0;\
18
+ z-index: 99;\
19
+ white-space: normal;\
20
+ }\
21
+ .ace_search.left {\
22
+ border-left: 0 none;\
23
+ border-radius: 0px 0px 5px 0px;\
24
+ left: 0;\
25
+ }\
26
+ .ace_search.right {\
27
+ border-radius: 0px 0px 0px 5px;\
28
+ border-right: 0 none;\
29
+ right: 0;\
30
+ }\
31
+ .ace_search_form, .ace_replace_form {\
32
+ margin: 0 20px 4px 0;\
33
+ overflow: hidden;\
34
+ line-height: 1.9;\
35
+ }\
36
+ .ace_replace_form {\
37
+ margin-right: 0;\
38
+ }\
39
+ .ace_search_form.ace_nomatch {\
40
+ outline: 1px solid red;\
41
+ }\
42
+ .ace_search_field {\
43
+ border-radius: 3px 0 0 3px;\
44
+ background-color: white;\
45
+ color: black;\
46
+ border: 1px solid #cbcbcb;\
47
+ border-right: 0 none;\
48
+ outline: 0;\
49
+ padding: 0;\
50
+ font-size: inherit;\
51
+ margin: 0;\
52
+ line-height: inherit;\
53
+ padding: 0 6px;\
54
+ min-width: 17em;\
55
+ vertical-align: top;\
56
+ min-height: 1.8em;\
57
+ box-sizing: content-box;\
58
+ }\
59
+ .ace_searchbtn {\
60
+ border: 1px solid #cbcbcb;\
61
+ line-height: inherit;\
62
+ display: inline-block;\
63
+ padding: 0 6px;\
64
+ background: #fff;\
65
+ border-right: 0 none;\
66
+ border-left: 1px solid #dcdcdc;\
67
+ cursor: pointer;\
68
+ margin: 0;\
69
+ position: relative;\
70
+ color: #666;\
71
+ }\
72
+ .ace_searchbtn:last-child {\
73
+ border-radius: 0 3px 3px 0;\
74
+ border-right: 1px solid #cbcbcb;\
75
+ }\
76
+ .ace_searchbtn:disabled {\
77
+ background: none;\
78
+ cursor: default;\
79
+ }\
80
+ .ace_searchbtn:hover {\
81
+ background-color: #eef1f6;\
82
+ }\
83
+ .ace_searchbtn.prev, .ace_searchbtn.next {\
84
+ padding: 0px 0.7em\
85
+ }\
86
+ .ace_searchbtn.prev:after, .ace_searchbtn.next:after {\
87
+ content: \"\";\
88
+ border: solid 2px #888;\
89
+ width: 0.5em;\
90
+ height: 0.5em;\
91
+ border-width: 2px 0 0 2px;\
92
+ display:inline-block;\
93
+ transform: rotate(-45deg);\
94
+ }\
95
+ .ace_searchbtn.next:after {\
96
+ border-width: 0 2px 2px 0 ;\
97
+ }\
98
+ .ace_searchbtn_close {\
99
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAcCAYAAABRVo5BAAAAZ0lEQVR42u2SUQrAMAhDvazn8OjZBilCkYVVxiis8H4CT0VrAJb4WHT3C5xU2a2IQZXJjiQIRMdkEoJ5Q2yMqpfDIo+XY4k6h+YXOyKqTIj5REaxloNAd0xiKmAtsTHqW8sR2W5f7gCu5nWFUpVjZwAAAABJRU5ErkJggg==) no-repeat 50% 0;\
100
+ border-radius: 50%;\
101
+ border: 0 none;\
102
+ color: #656565;\
103
+ cursor: pointer;\
104
+ font: 16px/16px Arial;\
105
+ padding: 0;\
106
+ height: 14px;\
107
+ width: 14px;\
108
+ top: 9px;\
109
+ right: 7px;\
110
+ position: absolute;\
111
+ }\
112
+ .ace_searchbtn_close:hover {\
113
+ background-color: #656565;\
114
+ background-position: 50% 100%;\
115
+ color: white;\
116
+ }\
117
+ .ace_button {\
118
+ margin-left: 2px;\
119
+ cursor: pointer;\
120
+ -webkit-user-select: none;\
121
+ -moz-user-select: none;\
122
+ -o-user-select: none;\
123
+ -ms-user-select: none;\
124
+ user-select: none;\
125
+ overflow: hidden;\
126
+ opacity: 0.7;\
127
+ border: 1px solid rgba(100,100,100,0.23);\
128
+ padding: 1px;\
129
+ box-sizing: border-box!important;\
130
+ color: black;\
131
+ }\
132
+ .ace_button:hover {\
133
+ background-color: #eee;\
134
+ opacity:1;\
135
+ }\
136
+ .ace_button:active {\
137
+ background-color: #ddd;\
138
+ }\
139
+ .ace_button.checked {\
140
+ border-color: #3399ff;\
141
+ opacity:1;\
142
+ }\
143
+ .ace_search_options{\
144
+ margin-bottom: 3px;\
145
+ text-align: right;\
146
+ -webkit-user-select: none;\
147
+ -moz-user-select: none;\
148
+ -o-user-select: none;\
149
+ -ms-user-select: none;\
150
+ user-select: none;\
151
+ clear: both;\
152
+ }\
153
+ .ace_search_counter {\
154
+ float: left;\
155
+ font-family: arial;\
156
+ padding: 0 8px;\
157
+ }";
158
+ var HashHandler = require("../keyboard/hash_handler").HashHandler;
159
+ var keyUtil = require("../lib/keys");
160
+
161
+ var MAX_COUNT = 999;
162
+
163
+ dom.importCssString(searchboxCss, "ace_searchbox", false);
164
+
165
+ var SearchBox = function(editor, range, showReplaceForm) {
166
+ var div = dom.createElement("div");
167
+ dom.buildDom(["div", {class:"ace_search right"},
168
+ ["span", {action: "hide", class: "ace_searchbtn_close"}],
169
+ ["div", {class: "ace_search_form"},
170
+ ["input", {class: "ace_search_field", placeholder: "Search for", spellcheck: "false"}],
171
+ ["span", {action: "findPrev", class: "ace_searchbtn prev"}, "\u200b"],
172
+ ["span", {action: "findNext", class: "ace_searchbtn next"}, "\u200b"],
173
+ ["span", {action: "findAll", class: "ace_searchbtn", title: "Alt-Enter"}, "All"]
174
+ ],
175
+ ["div", {class: "ace_replace_form"},
176
+ ["input", {class: "ace_search_field", placeholder: "Replace with", spellcheck: "false"}],
177
+ ["span", {action: "replaceAndFindNext", class: "ace_searchbtn"}, "Replace"],
178
+ ["span", {action: "replaceAll", class: "ace_searchbtn"}, "All"]
179
+ ],
180
+ ["div", {class: "ace_search_options"},
181
+ ["span", {action: "toggleReplace", class: "ace_button", title: "Toggle Replace mode",
182
+ style: "float:left;margin-top:-2px;padding:0 5px;"}, "+"],
183
+ ["span", {class: "ace_search_counter"}],
184
+ ["span", {action: "toggleRegexpMode", class: "ace_button", title: "RegExp Search"}, ".*"],
185
+ ["span", {action: "toggleCaseSensitive", class: "ace_button", title: "CaseSensitive Search"}, "Aa"],
186
+ ["span", {action: "toggleWholeWords", class: "ace_button", title: "Whole Word Search"}, "\\b"],
187
+ ["span", {action: "searchInSelection", class: "ace_button", title: "Search In Selection"}, "S"]
188
+ ]
189
+ ], div);
190
+ this.element = div.firstChild;
191
+
192
+ this.setSession = this.setSession.bind(this);
193
+
194
+ this.$init();
195
+ this.setEditor(editor);
196
+ dom.importCssString(searchboxCss, "ace_searchbox", editor.container);
197
+ };
198
+
199
+ (function() {
200
+ this.setEditor = function(editor) {
201
+ editor.searchBox = this;
202
+ editor.renderer.scroller.appendChild(this.element);
203
+ this.editor = editor;
204
+ };
205
+
206
+ this.setSession = function(e) {
207
+ this.searchRange = null;
208
+ this.$syncOptions(true);
209
+ };
210
+
211
+ this.$initElements = function(sb) {
212
+ this.searchBox = sb.querySelector(".ace_search_form");
213
+ this.replaceBox = sb.querySelector(".ace_replace_form");
214
+ this.searchOption = sb.querySelector("[action=searchInSelection]");
215
+ this.replaceOption = sb.querySelector("[action=toggleReplace]");
216
+ this.regExpOption = sb.querySelector("[action=toggleRegexpMode]");
217
+ this.caseSensitiveOption = sb.querySelector("[action=toggleCaseSensitive]");
218
+ this.wholeWordOption = sb.querySelector("[action=toggleWholeWords]");
219
+ this.searchInput = this.searchBox.querySelector(".ace_search_field");
220
+ this.replaceInput = this.replaceBox.querySelector(".ace_search_field");
221
+ this.searchCounter = sb.querySelector(".ace_search_counter");
222
+ };
223
+
224
+ this.$init = function() {
225
+ var sb = this.element;
226
+
227
+ this.$initElements(sb);
228
+
229
+ var _this = this;
230
+ event.addListener(sb, "mousedown", function(e) {
231
+ setTimeout(function(){
232
+ _this.activeInput.focus();
233
+ }, 0);
234
+ event.stopPropagation(e);
235
+ });
236
+ event.addListener(sb, "click", function(e) {
237
+ var t = e.target || e.srcElement;
238
+ var action = t.getAttribute("action");
239
+ if (action && _this[action])
240
+ _this[action]();
241
+ else if (_this.$searchBarKb.commands[action])
242
+ _this.$searchBarKb.commands[action].exec(_this);
243
+ event.stopPropagation(e);
244
+ });
245
+
246
+ event.addCommandKeyListener(sb, function(e, hashId, keyCode) {
247
+ var keyString = keyUtil.keyCodeToString(keyCode);
248
+ var command = _this.$searchBarKb.findKeyCommand(hashId, keyString);
249
+ if (command && command.exec) {
250
+ command.exec(_this);
251
+ event.stopEvent(e);
252
+ }
253
+ });
254
+
255
+ this.$onChange = lang.delayedCall(function() {
256
+ _this.find(false, false);
257
+ });
258
+
259
+ event.addListener(this.searchInput, "input", function() {
260
+ _this.$onChange.schedule(20);
261
+ });
262
+ event.addListener(this.searchInput, "focus", function() {
263
+ _this.activeInput = _this.searchInput;
264
+ _this.searchInput.value && _this.highlight();
265
+ });
266
+ event.addListener(this.replaceInput, "focus", function() {
267
+ _this.activeInput = _this.replaceInput;
268
+ _this.searchInput.value && _this.highlight();
269
+ });
270
+ };
271
+ this.$closeSearchBarKb = new HashHandler([{
272
+ bindKey: "Esc",
273
+ name: "closeSearchBar",
274
+ exec: function(editor) {
275
+ editor.searchBox.hide();
276
+ }
277
+ }]);
278
+ this.$searchBarKb = new HashHandler();
279
+ this.$searchBarKb.bindKeys({
280
+ "Ctrl-f|Command-f": function(sb) {
281
+ var isReplace = sb.isReplace = !sb.isReplace;
282
+ sb.replaceBox.style.display = isReplace ? "" : "none";
283
+ sb.replaceOption.checked = false;
284
+ sb.$syncOptions();
285
+ sb.searchInput.focus();
286
+ },
287
+ "Ctrl-H|Command-Option-F": function(sb) {
288
+ if (sb.editor.getReadOnly())
289
+ return;
290
+ sb.replaceOption.checked = true;
291
+ sb.$syncOptions();
292
+ sb.replaceInput.focus();
293
+ },
294
+ "Ctrl-G|Command-G": function(sb) {
295
+ sb.findNext();
296
+ },
297
+ "Ctrl-Shift-G|Command-Shift-G": function(sb) {
298
+ sb.findPrev();
299
+ },
300
+ "esc": function(sb) {
301
+ setTimeout(function() { sb.hide();});
302
+ },
303
+ "Return": function(sb) {
304
+ if (sb.activeInput == sb.replaceInput)
305
+ sb.replace();
306
+ sb.findNext();
307
+ },
308
+ "Shift-Return": function(sb) {
309
+ if (sb.activeInput == sb.replaceInput)
310
+ sb.replace();
311
+ sb.findPrev();
312
+ },
313
+ "Alt-Return": function(sb) {
314
+ if (sb.activeInput == sb.replaceInput)
315
+ sb.replaceAll();
316
+ sb.findAll();
317
+ },
318
+ "Tab": function(sb) {
319
+ (sb.activeInput == sb.replaceInput ? sb.searchInput : sb.replaceInput).focus();
320
+ }
321
+ });
322
+
323
+ this.$searchBarKb.addCommands([{
324
+ name: "toggleRegexpMode",
325
+ bindKey: {win: "Alt-R|Alt-/", mac: "Ctrl-Alt-R|Ctrl-Alt-/"},
326
+ exec: function(sb) {
327
+ sb.regExpOption.checked = !sb.regExpOption.checked;
328
+ sb.$syncOptions();
329
+ }
330
+ }, {
331
+ name: "toggleCaseSensitive",
332
+ bindKey: {win: "Alt-C|Alt-I", mac: "Ctrl-Alt-R|Ctrl-Alt-I"},
333
+ exec: function(sb) {
334
+ sb.caseSensitiveOption.checked = !sb.caseSensitiveOption.checked;
335
+ sb.$syncOptions();
336
+ }
337
+ }, {
338
+ name: "toggleWholeWords",
339
+ bindKey: {win: "Alt-B|Alt-W", mac: "Ctrl-Alt-B|Ctrl-Alt-W"},
340
+ exec: function(sb) {
341
+ sb.wholeWordOption.checked = !sb.wholeWordOption.checked;
342
+ sb.$syncOptions();
343
+ }
344
+ }, {
345
+ name: "toggleReplace",
346
+ exec: function(sb) {
347
+ sb.replaceOption.checked = !sb.replaceOption.checked;
348
+ sb.$syncOptions();
349
+ }
350
+ }, {
351
+ name: "searchInSelection",
352
+ exec: function(sb) {
353
+ sb.searchOption.checked = !sb.searchRange;
354
+ sb.setSearchRange(sb.searchOption.checked && sb.editor.getSelectionRange());
355
+ sb.$syncOptions();
356
+ }
357
+ }]);
358
+
359
+ this.setSearchRange = function(range) {
360
+ this.searchRange = range;
361
+ if (range) {
362
+ this.searchRangeMarker = this.editor.session.addMarker(range, "ace_active-line");
363
+ } else if (this.searchRangeMarker) {
364
+ this.editor.session.removeMarker(this.searchRangeMarker);
365
+ this.searchRangeMarker = null;
366
+ }
367
+ };
368
+
369
+ this.$syncOptions = function(preventScroll) {
370
+ dom.setCssClass(this.replaceOption, "checked", this.searchRange);
371
+ dom.setCssClass(this.searchOption, "checked", this.searchOption.checked);
372
+ this.replaceOption.textContent = this.replaceOption.checked ? "-" : "+";
373
+ dom.setCssClass(this.regExpOption, "checked", this.regExpOption.checked);
374
+ dom.setCssClass(this.wholeWordOption, "checked", this.wholeWordOption.checked);
375
+ dom.setCssClass(this.caseSensitiveOption, "checked", this.caseSensitiveOption.checked);
376
+ var readOnly = this.editor.getReadOnly();
377
+ this.replaceOption.style.display = readOnly ? "none" : "";
378
+ this.replaceBox.style.display = this.replaceOption.checked && !readOnly ? "" : "none";
379
+ this.find(false, false, preventScroll);
380
+ };
381
+
382
+ this.highlight = function(re) {
383
+ this.editor.session.highlight(re || this.editor.$search.$options.re);
384
+ this.editor.renderer.updateBackMarkers();
385
+ };
386
+ this.find = function(skipCurrent, backwards, preventScroll) {
387
+ var range = this.editor.find(this.searchInput.value, {
388
+ skipCurrent: skipCurrent,
389
+ backwards: backwards,
390
+ wrap: true,
391
+ regExp: this.regExpOption.checked,
392
+ caseSensitive: this.caseSensitiveOption.checked,
393
+ wholeWord: this.wholeWordOption.checked,
394
+ preventScroll: preventScroll,
395
+ range: this.searchRange
396
+ });
397
+ var noMatch = !range && this.searchInput.value;
398
+ dom.setCssClass(this.searchBox, "ace_nomatch", noMatch);
399
+ this.editor._emit("findSearchBox", { match: !noMatch });
400
+ this.highlight();
401
+ this.updateCounter();
402
+ };
403
+ this.updateCounter = function() {
404
+ var editor = this.editor;
405
+ var regex = editor.$search.$options.re;
406
+ var all = 0;
407
+ var before = 0;
408
+ if (regex) {
409
+ var value = this.searchRange
410
+ ? editor.session.getTextRange(this.searchRange)
411
+ : editor.getValue();
412
+
413
+ var offset = editor.session.doc.positionToIndex(editor.selection.anchor);
414
+ if (this.searchRange)
415
+ offset -= editor.session.doc.positionToIndex(this.searchRange.start);
416
+
417
+ var last = regex.lastIndex = 0;
418
+ var m;
419
+ while ((m = regex.exec(value))) {
420
+ all++;
421
+ last = m.index;
422
+ if (last <= offset)
423
+ before++;
424
+ if (all > MAX_COUNT)
425
+ break;
426
+ if (!m[0]) {
427
+ regex.lastIndex = last += 1;
428
+ if (last >= value.length)
429
+ break;
430
+ }
431
+ }
432
+ }
433
+ this.searchCounter.textContent = before + " of " + (all > MAX_COUNT ? MAX_COUNT + "+" : all);
434
+ };
435
+ this.findNext = function() {
436
+ this.find(true, false);
437
+ };
438
+ this.findPrev = function() {
439
+ this.find(true, true);
440
+ };
441
+ this.findAll = function(){
442
+ var range = this.editor.findAll(this.searchInput.value, {
443
+ regExp: this.regExpOption.checked,
444
+ caseSensitive: this.caseSensitiveOption.checked,
445
+ wholeWord: this.wholeWordOption.checked
446
+ });
447
+ var noMatch = !range && this.searchInput.value;
448
+ dom.setCssClass(this.searchBox, "ace_nomatch", noMatch);
449
+ this.editor._emit("findSearchBox", { match: !noMatch });
450
+ this.highlight();
451
+ this.hide();
452
+ };
453
+ this.replace = function() {
454
+ if (!this.editor.getReadOnly())
455
+ this.editor.replace(this.replaceInput.value);
456
+ };
457
+ this.replaceAndFindNext = function() {
458
+ if (!this.editor.getReadOnly()) {
459
+ this.editor.replace(this.replaceInput.value);
460
+ this.findNext();
461
+ }
462
+ };
463
+ this.replaceAll = function() {
464
+ if (!this.editor.getReadOnly())
465
+ this.editor.replaceAll(this.replaceInput.value);
466
+ };
467
+
468
+ this.hide = function() {
469
+ this.active = false;
470
+ this.setSearchRange(null);
471
+ this.editor.off("changeSession", this.setSession);
472
+
473
+ this.element.style.display = "none";
474
+ this.editor.keyBinding.removeKeyboardHandler(this.$closeSearchBarKb);
475
+ this.editor.focus();
476
+ };
477
+ this.show = function(value, isReplace) {
478
+ this.active = true;
479
+ this.editor.on("changeSession", this.setSession);
480
+ this.element.style.display = "";
481
+ this.replaceOption.checked = isReplace;
482
+
483
+ if (value)
484
+ this.searchInput.value = value;
485
+
486
+ this.searchInput.focus();
487
+ this.searchInput.select();
488
+
489
+ this.editor.keyBinding.addKeyboardHandler(this.$closeSearchBarKb);
490
+
491
+ this.$syncOptions(true);
492
+ };
493
+
494
+ this.isFocused = function() {
495
+ var el = document.activeElement;
496
+ return el == this.searchInput || el == this.replaceInput;
497
+ };
498
+ }).call(SearchBox.prototype);
499
+
500
+ exports.SearchBox = SearchBox;
501
+
502
+ exports.Search = function(editor, isReplace) {
503
+ var sb = editor.searchBox || new SearchBox(editor);
504
+ sb.show(editor.session.getTextRange(), isReplace);
505
+ };
506
+
507
+ }); (function() {
508
+ ace.require(["ace/ext/searchbox"], function(m) {
509
+ if (typeof module == "object" && typeof exports == "object" && module) {
510
+ module.exports = m;
511
+ }
512
+ });
513
+ })();
514
+