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/python
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({indentUnit: 4},
[4] Fix | Delete
{name: "python",
[5] Fix | Delete
version: 3,
[6] Fix | Delete
singleLineStringErrors: false});
[7] Fix | Delete
function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }
[8] Fix | Delete
[9] Fix | Delete
// Error, because "foobarhello" is neither a known type or property, but
[10] Fix | Delete
// property was expected (after "and"), and it should be in parentheses.
[11] Fix | Delete
MT("decoratorStartOfLine",
[12] Fix | Delete
"[meta @dec]",
[13] Fix | Delete
"[keyword def] [def function]():",
[14] Fix | Delete
" [keyword pass]");
[15] Fix | Delete
[16] Fix | Delete
MT("decoratorIndented",
[17] Fix | Delete
"[keyword class] [def Foo]:",
[18] Fix | Delete
" [meta @dec]",
[19] Fix | Delete
" [keyword def] [def function]():",
[20] Fix | Delete
" [keyword pass]");
[21] Fix | Delete
[22] Fix | Delete
MT("matmulWithSpace:", "[variable a] [operator @] [variable b]");
[23] Fix | Delete
MT("matmulWithoutSpace:", "[variable a][operator @][variable b]");
[24] Fix | Delete
MT("matmulSpaceBefore:", "[variable a] [operator @][variable b]");
[25] Fix | Delete
[26] Fix | Delete
MT("fValidStringPrefix", "[string f'this is a {formatted} string']");
[27] Fix | Delete
MT("uValidStringPrefix", "[string u'this is an unicode string']");
[28] Fix | Delete
})();
[29] Fix | Delete
[30] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function