我每天都在使用emacs,但在配置它时我仍然是初学者。我尝试在服务器上安装this package但没有成功。
这个包是否适用于没有GUI的emacs?
我尝试用var d = new Dictionary<int, string>()
{
{ 3, "3" },
{ 0, "0" },
{ 1, "1" },
{ 2, "2" }
};
// remove something
d.Remove(1);
// rebuilt the dictionary
d = d.OrderBy(x => x.Key)
.Select((o, i) => new { i, o.Value })
.ToDictionary(t => t.i, t => t.Value);
// result
// { 0, "0" },
// { 1, "2" },
// { 2, "3" },
安装它,但我得到了这个:
package-install jade
感谢您的回答