editors/Programmer's Notepad: Difference between revisions

From devkitPro
Jump to navigation Jump to search
(New page: The devkitPro windows installer provides a lightweight code editor called [http://www.pnotepad.org/ Programmer's Notepad], already configured for running make and capturing error output. Y...)
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
The devkitPro windows installer provides a lightweight code editor called [http://www.pnotepad.org/ Programmer's Notepad], already configured for running make and capturing error output. You are, of course, free to use the command line if that's how you prefer to work but you'll be much more productive with PN2 or a similarly capable editor.
The devkitPro windows installer provides a lightweight code editor called [http://www.pnotepad.org/ Programmer's Notepad], already configured for running make and capturing error output. You are, of course, free to use the command line if that's how you prefer to work but you'll be much more productive with PN2 or a similarly capable editor.
We intend to change the supplied editor to CodeLite - PN2 is quite cabable but is unfortunately windows only.
Most of the example code provided contains a .pnproj file. Double clicking this file should load the relevant project complete with file tree view. Some tools are configured already - make and clean, these may be accessed by pressing ALT 1 for make and ALT 2 for clean or alternatively from the tools menu. The project files are designed so that .h files saved in the include folder and .c/.cpp files saved in the source folder are automatically added to the tree view. To get files which have just been added to show up you need to toggle the relevant folder in the tree view.
'''When creating your own projects copy the example you're working from to a new folder outside the devkitPro folder. The installer/updater will remove everything in the examples folders when new samples are provided'''
In order to set these functions up manually first click Tools->options then move to the Tools pane in the options dialog. In this section you want to modify the global tools.
[[image:pnoptions.png]]
Click the add button and set up make as shown here. The command is the actual command line used to run the tool, in this case simply make. The Folder box denotes the working directory for the tool, in this case we've set it to $(ProjectPath) which is the directory where the PN2 project file is stored. All the devkitPro example code is arranged so the makefile is there. Set the tool to save all files before running so you don't have to save your modifications manually. To set the keyboard shortcut for the tool simply click in the Shortcut box and press your desired key combination.
[[image:pntooltoolprops.png]]
Click the Console I/O tab and tick the Capture Output box, the default error parser is fine for gcc tools.
[[image:pntooltoolio.png]]
Setting up clean is identical, just set the name of the tool as 'clean' and the command as 'make clean'.

Latest revision as of 11:49, 18 September 2011

The devkitPro windows installer provides a lightweight code editor called Programmer's Notepad, already configured for running make and capturing error output. You are, of course, free to use the command line if that's how you prefer to work but you'll be much more productive with PN2 or a similarly capable editor.

We intend to change the supplied editor to CodeLite - PN2 is quite cabable but is unfortunately windows only.

Most of the example code provided contains a .pnproj file. Double clicking this file should load the relevant project complete with file tree view. Some tools are configured already - make and clean, these may be accessed by pressing ALT 1 for make and ALT 2 for clean or alternatively from the tools menu. The project files are designed so that .h files saved in the include folder and .c/.cpp files saved in the source folder are automatically added to the tree view. To get files which have just been added to show up you need to toggle the relevant folder in the tree view.

When creating your own projects copy the example you're working from to a new folder outside the devkitPro folder. The installer/updater will remove everything in the examples folders when new samples are provided

In order to set these functions up manually first click Tools->options then move to the Tools pane in the options dialog. In this section you want to modify the global tools.

Click the add button and set up make as shown here. The command is the actual command line used to run the tool, in this case simply make. The Folder box denotes the working directory for the tool, in this case we've set it to $(ProjectPath) which is the directory where the PN2 project file is stored. All the devkitPro example code is arranged so the makefile is there. Set the tool to save all files before running so you don't have to save your modifications manually. To set the keyboard shortcut for the tool simply click in the Shortcut box and press your desired key combination.

Click the Console I/O tab and tick the Capture Output box, the default error parser is fine for gcc tools.

Setting up clean is identical, just set the name of the tool as 'clean' and the command as 'make clean'.