mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeEditor
synced 2024-11-24 15:23:31 +00:00
05e6be051c
ACE defaults to a white background now. I have no preference in this, but it is caused by a change in the TextMate theme. There is a bugreport (Bug 55423) about the old blue background. This fixes an annoying problem with Safari 7, where characters are no longer properly measured by ACE. https://github.com/ajaxorg/ace/issues/1534 Fixes double-click to select: https://github.com/ajaxorg/ace/issues/956 Set proper basePath so that require works, allowing conditional loading of ACE resources. Need for Find to work after this update Bug: 55423 Bug: 45876 Bug: 58521 Change-Id: Ia64b67b4553f77c6ba3d2aefec4bab62d111deb7
91 lines
2.2 KiB
JavaScript
91 lines
2.2 KiB
JavaScript
define('ace/snippets/sh', ['require', 'exports', 'module' ], function(require, exports, module) {
|
|
|
|
|
|
exports.snippetText = "# Shebang. Executing bash via /usr/bin/env makes scripts more portable.\n\
|
|
snippet #!\n\
|
|
#!/usr/bin/env bash\n\
|
|
\n\
|
|
snippet if\n\
|
|
if [[ ${1:condition} ]]; then\n\
|
|
${2:#statements}\n\
|
|
fi\n\
|
|
snippet elif\n\
|
|
elif [[ ${1:condition} ]]; then\n\
|
|
${2:#statements}\n\
|
|
snippet for\n\
|
|
for (( ${2:i} = 0; $2 < ${1:count}; $2++ )); do\n\
|
|
${3:#statements}\n\
|
|
done\n\
|
|
snippet fori\n\
|
|
for ${1:needle} in ${2:haystack} ; do\n\
|
|
${3:#statements}\n\
|
|
done\n\
|
|
snippet wh\n\
|
|
while [[ ${1:condition} ]]; do\n\
|
|
${2:#statements}\n\
|
|
done\n\
|
|
snippet until\n\
|
|
until [[ ${1:condition} ]]; do\n\
|
|
${2:#statements}\n\
|
|
done\n\
|
|
snippet case\n\
|
|
case ${1:word} in\n\
|
|
${2:pattern})\n\
|
|
${3};;\n\
|
|
esac\n\
|
|
snippet go \n\
|
|
while getopts '${1:o}' ${2:opts} \n\
|
|
do \n\
|
|
case $$2 in\n\
|
|
${3:o0})\n\
|
|
${4:#staments};;\n\
|
|
esac\n\
|
|
done\n\
|
|
# Set SCRIPT_DIR variable to directory script is located.\n\
|
|
snippet sdir\n\
|
|
SCRIPT_DIR=\"$( cd \"$( dirname \"${BASH_SOURCE[0]}\" )\" && pwd )\"\n\
|
|
# getopt\n\
|
|
snippet getopt\n\
|
|
__ScriptVersion=\"${1:version}\"\n\
|
|
\n\
|
|
#=== FUNCTION ================================================================\n\
|
|
# NAME: usage\n\
|
|
# DESCRIPTION: Display usage information.\n\
|
|
#===============================================================================\n\
|
|
function usage ()\n\
|
|
{\n\
|
|
cat <<- EOT\n\
|
|
\n\
|
|
Usage : $${0:0} [options] [--] \n\
|
|
\n\
|
|
Options: \n\
|
|
-h|help Display this message\n\
|
|
-v|version Display script version\n\
|
|
\n\
|
|
EOT\n\
|
|
} # ---------- end of function usage ----------\n\
|
|
\n\
|
|
#-----------------------------------------------------------------------\n\
|
|
# Handle command line arguments\n\
|
|
#-----------------------------------------------------------------------\n\
|
|
\n\
|
|
while getopts \":hv\" opt\n\
|
|
do\n\
|
|
case $opt in\n\
|
|
\n\
|
|
h|help ) usage; exit 0 ;;\n\
|
|
\n\
|
|
v|version ) echo \"$${0:0} -- Version $__ScriptVersion\"; exit 0 ;;\n\
|
|
\n\
|
|
\\? ) echo -e \"\\n Option does not exist : $OPTARG\\n\"\n\
|
|
usage; exit 1 ;;\n\
|
|
\n\
|
|
esac # --- end of case ---\n\
|
|
done\n\
|
|
shift $(($OPTIND-1))\n\
|
|
\n\
|
|
";
|
|
exports.scope = "sh";
|
|
|
|
});
|