Tensor's blog

By Tensor, 10 years ago, In English

currently i'm trying to change gedit settings in order to be more capable of compiling, running, automatically inserting templates... etc. the problem is i don't know how to change the settings i searched the web and find zillions of answers but still can't configure the settings!

any help would be pleased :)

thanks in advance :-)

  • Vote: I like it
  • +1
  • Vote: I do not like it

»
10 years ago, # |
  Vote: I like it +1 Vote: I do not like it

When I use Linux, I use gedit & mc;

I create folder for every task;

I have scripts ./Open.sh && ./Compile.sh;

To open code which is in Main.cpp I run ./Open.sh;

To compile it I run ./Compile.sh;

Maybe it is slowly working approach, but I got used to use this approach;

./Open.sh code:

#!/bin/bash

gedit Main.cpp

./Compile.sh code:

#!/bin/bash

g++ Main.cpp -o Main.out -std=c++11
  • »
    »
    10 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    the problem that i have the gedit settings specified here and i don't know how to apply it to my gedit settings!