logic: file paths
Changed relative file paths for resources to absolute paths to ensure functionality of shortcuts and file associations on windows platform
This commit is contained in:
@@ -14,10 +14,10 @@
|
||||
// project's program.
|
||||
//
|
||||
// WHY AM I HERE?
|
||||
// Every time you open up a project in Coati it will go through your project in
|
||||
// search for a function called "main". In case this function is defined the
|
||||
// corresponding symbol is activated. Otherwise Coati will just activate the
|
||||
// first thing in your codebase it happens to stumble across.
|
||||
// Every time you open up a project in Coati it will look for a function called
|
||||
// "main". In case this function is defined it will be displayed right away.
|
||||
// Otherwise Coati will just activate the first thing in your codebase it
|
||||
// happens to stumble across.
|
||||
//
|
||||
// WHAT CAN I DO NOW?
|
||||
// Left-click the "my_first_step()" function call inside the main function.
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
//------------------------------------------------------------------------------
|
||||
//
|
||||
// WHAT JUST HAPPENED?
|
||||
// As I mentioned earlier, Coati knows the concept of an "active" symbol. You
|
||||
// just changed the active symbol by clicking on the name of a function.
|
||||
// Coati uses the concept of an "active" symbol. You just changed the active
|
||||
// symbol by clicking on the name of a function.
|
||||
//
|
||||
// OK, BUT WHAT IS AN ACTIVE SYMBOL?
|
||||
// Coati doesn't show your entire code base on a single screen. Even for
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
//
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
void finde_me_if_you_can()
|
||||
void find_me_if_you_can()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -10,15 +10,13 @@
|
||||
// Well done. Lets get over the other buttons left to the search bar really
|
||||
// quick.
|
||||
//
|
||||
// 5 - UNDO AND REDO
|
||||
// You can use the buttons to the very left to undo and redo your actions. This
|
||||
// may seem odd since Coati doesn't include any features to actually change
|
||||
// code. Instead Coati offers these buttons to help you navigate. So they
|
||||
// really come in handy in case you ask yourself something like "How did I end
|
||||
// up here?"
|
||||
// 5 - FORWARD AND BACKWARD
|
||||
// You can use the buttons to the very left to go forward and backward, like
|
||||
// in a web browser. They really come in handy in case you ask yourself something
|
||||
// like "How did I end up here?"
|
||||
//
|
||||
// 6 - REFRESH
|
||||
// The next button allows you to refresh you project in case you changed some
|
||||
// The next button allows you to refresh the project in case you changed some
|
||||
// of your code. The second button toggels the auto-refresh option. When
|
||||
// enabled Coati refreshes your project every time it's window gets focused.
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user