I have installed the MonoDevelop 0.13.1 from Debian's official apt repository, but it appears it has some problems: when I type a line of code and press Enter, it doesn't go to the next line so that I can type another line of code as expected, instead it just "push" the current line down. Like this:
Before pressing Enter:
public virtual void SayHello()
{
System.Console.Writeline("Hello World");|
}
After pressing Enter:
public virtual void SayHello()
{
|System.Console.Writeline("Hello World");
}
Hello,
I have installed the MonoDevelop 0.13.1 from Debian's official apt repository, but it appears it has some problems: when I type a line of code and press Enter, it doesn't go to the next line so that I can type another line of code as expected, instead it just "push" the current line down. Like this:
Before pressing Enter:
public virtual void SayHello() { System.Console.Writeline("Hello World");| }After pressing Enter:
public virtual void SayHello() { |System.Console.Writeline("Hello World"); }Not sure how to solve this problem.
Thanks in advance
whistler_wmz at users dot sourceforge dot net
Login or register to post comments 1 point