kopia lustrzana https://github.com/c9/core
Merge pull request +10477 from c9/revert-10476-revert-markdown
Restore new markdown previewpull/223/head
commit
a92e104a95
|
@ -187,5 +187,5 @@ highlight.renderSync = function(input, mode, theme, lineStart, disableGutter) {
|
|||
};
|
||||
|
||||
module.exports = highlight;
|
||||
module.exports.highlight =highlight;
|
||||
module.exports.highlight = highlight;
|
||||
});
|
||||
|
|
|
@ -94,9 +94,9 @@
|
|||
"c9.ide.navigate": "#c191d9b92f",
|
||||
"c9.ide.newresource": "#981a408a7b",
|
||||
"c9.ide.openfiles": "#7fa4a97fed",
|
||||
"c9.ide.preview": "#72a4521169",
|
||||
"c9.ide.preview": "#23b5e2149d",
|
||||
"c9.ide.preview.browser": "#cec211a76a",
|
||||
"c9.ide.preview.markdown": "#8ed82f1197",
|
||||
"c9.ide.preview.markdown": "#bc846e1562",
|
||||
"c9.ide.pubsub": "#a85fb27eca",
|
||||
"c9.ide.readonly": "#e67bb593bd",
|
||||
"c9.ide.recentfiles": "#7c099abf40",
|
||||
|
@ -106,7 +106,7 @@
|
|||
"c9.ide.run.build": "#0598fff697",
|
||||
"c9.ide.run.debug.xdebug": "#c4d852533c",
|
||||
"c9.ide.save": "#5118b30230",
|
||||
"c9.ide.scm": "#bd5ca2557c",
|
||||
"c9.ide.scm": "#27ac592b33",
|
||||
"c9.ide.terminal.monitor": "#35afa7f97f",
|
||||
"c9.ide.test": "#93be8f1f26",
|
||||
"c9.ide.test.mocha": "#7844e1dc83",
|
||||
|
|
|
@ -51,6 +51,7 @@ define(function(require, exports, module) {
|
|||
"ENOTDIR" : "{Totype|type} {to|filename} is not a directory",
|
||||
"EEXIST" : "{Totype|type} {to|filename} already exists",
|
||||
"EACCES" : "Access denied acccessing this {type}",
|
||||
"ENOSPC" : "Your disk is full. Please create more space. Could not write {filename}",
|
||||
"EDISCONNECT" : "The connection went away. Please try again.",
|
||||
"ENOTCONNECTED" : "You are disconnected. "
|
||||
+ "Please check your connection and try again"
|
||||
|
@ -81,6 +82,7 @@ define(function(require, exports, module) {
|
|||
|
||||
fs.on("userError", function(e) {
|
||||
if (!m[e.name]) return;
|
||||
if (e.error.code == "EEXIST") return;
|
||||
|
||||
var args = e.args;
|
||||
var path = args[0];
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.splitter {
|
||||
position : relative;
|
||||
z-index : 10000;
|
||||
z-index : 100000;
|
||||
.box-sizing(border-box);
|
||||
}
|
||||
|
||||
|
|
|
@ -262,7 +262,7 @@ define(function(require, exports, module) {
|
|||
["fontfamily", "Ubuntu Mono, Menlo, Consolas, monospace"], // Monaco,
|
||||
["fontsize", "12"],
|
||||
["blinking", "false"],
|
||||
["scrollback", 10000]
|
||||
["scrollback", 1000]
|
||||
]);
|
||||
|
||||
setSettings();
|
||||
|
|
Ładowanie…
Reference in New Issue