Блог пользователя Tensor

Автор Tensor, 9 лет назад, По-английски

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 :-)

  • Проголосовать: нравится
  • +1
  • Проголосовать: не нравится

»
9 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

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
  • »
    »
    9 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

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