Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wp-file-.../lib/codemirr.../mode/shell
File: test.js
// CodeMirror, copyright (c) by Marijn Haverbeke and others
[0] Fix | Delete
// Distributed under an MIT license: http://codemirror.net/LICENSE
[1] Fix | Delete
[2] Fix | Delete
(function() {
[3] Fix | Delete
var mode = CodeMirror.getMode({}, "shell");
[4] Fix | Delete
function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }
[5] Fix | Delete
[6] Fix | Delete
MT("var",
[7] Fix | Delete
"text [def $var] text");
[8] Fix | Delete
MT("varBraces",
[9] Fix | Delete
"text[def ${var}]text");
[10] Fix | Delete
MT("varVar",
[11] Fix | Delete
"text [def $a$b] text");
[12] Fix | Delete
MT("varBracesVarBraces",
[13] Fix | Delete
"text[def ${a}${b}]text");
[14] Fix | Delete
[15] Fix | Delete
MT("singleQuotedVar",
[16] Fix | Delete
"[string 'text $var text']");
[17] Fix | Delete
MT("singleQuotedVarBraces",
[18] Fix | Delete
"[string 'text ${var} text']");
[19] Fix | Delete
[20] Fix | Delete
MT("doubleQuotedVar",
[21] Fix | Delete
'[string "text ][def $var][string text"]');
[22] Fix | Delete
MT("doubleQuotedVarBraces",
[23] Fix | Delete
'[string "text][def ${var}][string text"]');
[24] Fix | Delete
MT("doubleQuotedVarPunct",
[25] Fix | Delete
'[string "text ][def $@][string text"]');
[26] Fix | Delete
MT("doubleQuotedVarVar",
[27] Fix | Delete
'[string "][def $a$b][string "]');
[28] Fix | Delete
MT("doubleQuotedVarBracesVarBraces",
[29] Fix | Delete
'[string "][def ${a}${b}][string "]');
[30] Fix | Delete
[31] Fix | Delete
MT("notAString",
[32] Fix | Delete
"text\\'text");
[33] Fix | Delete
MT("escapes",
[34] Fix | Delete
"outside\\'\\\"\\`\\\\[string \"inside\\`\\'\\\"\\\\`\\$notAVar\"]outside\\$\\(notASubShell\\)");
[35] Fix | Delete
[36] Fix | Delete
MT("subshell",
[37] Fix | Delete
"[builtin echo] [quote jQuery(whoami)] s log, stardate [quote `date`].");
[38] Fix | Delete
MT("doubleQuotedSubshell",
[39] Fix | Delete
"[builtin echo] [string \"][quote jQuery(whoami)][string 's log, stardate `date`.\"]");
[40] Fix | Delete
[41] Fix | Delete
MT("hashbang",
[42] Fix | Delete
"[meta #!/bin/bash]");
[43] Fix | Delete
MT("comment",
[44] Fix | Delete
"text [comment # Blurb]");
[45] Fix | Delete
[46] Fix | Delete
MT("numbers",
[47] Fix | Delete
"[number 0] [number 1] [number 2]");
[48] Fix | Delete
MT("keywords",
[49] Fix | Delete
"[keyword while] [atom true]; [keyword do]",
[50] Fix | Delete
" [builtin sleep] [number 3]",
[51] Fix | Delete
"[keyword done]");
[52] Fix | Delete
MT("options",
[53] Fix | Delete
"[builtin ls] [attribute -l] [attribute --human-readable]");
[54] Fix | Delete
MT("operator",
[55] Fix | Delete
"[def var][operator =]value");
[56] Fix | Delete
})();
[57] Fix | Delete
[58] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function