Tagged Questions
1
vote
2answers
133 views
Cannot compile java code [Unicode Byte Order Mark 65279]
I wrote a simple Java program with the gedit text editor.
public class Example{
public static void main (String args [])
{
System.out.println("hi yaar");
}
}
When I tried to ...
3
votes
1answer
100 views
C++ programming - Is there a way to make gedit recognize new classes?
I'm C++ programming in ubuntu 12.04 using gedit and it recognizes c++ default commands. I was wondering if I can make it able to recognize the new classes I define and change their color in the code ...
7
votes
2answers
4k views
How can I get gedit ready for programming in Ruby and Ruby on Rails?
I'd like to know which gedit plugins I could install to make programming for Ruby and Ruby on Rails easier?
2
votes
3answers
193 views
Programming language api sidebar in gedit
Im not sure this is an SO question or not, but is there a plugin for gedit to enable me to have the api for a particular language open in a sidebar?
Im currently working in Java, and it would be ...
8
votes
1answer
309 views
How can I run gedit with a different configuration
I want to use gedit as a programming IDE and as a regular text editor. Would I be able to make some .desktop file to load a different configuration?
2
votes
2answers
1k views
Auto indentation in Gedit
I'm using Gedit to program C and CPP, and I've enabled auto indentation in Edit->Pref.
However, it still doesn't work. Is there anything I can do?
3
votes
3answers
487 views
Does Geany or Gedit provide a browser protocol in the way Textmate does with txmt://?
Textmate on the Mac can be bound to the txmt protocol, meaning that development frameworks (such as the Play Framework) can be configured to use this to display error messages. If a stacktrace ...
2
votes
1answer
343 views
gedit plugin development in C
I'm Interesting to write gedit-plugins in C I've checked that http://live.gnome.org/Gedit/NewMDIPluginHowTo but i find it not good to start
How can I get another informations about writing gedit ...