Search found 11 matches
- Thu Jan 15, 2009 11:06 pm
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
- Topic: How to TOGGLE PHP comments?
- Replies: 1
- Views: 1579
How to TOGGLE PHP comments?
Right now, this is the main issue preventing me from using Rapid PHP on a regular basis...it is *really* starting to bug me. I have tested this in the latest 9.4.0.102 version. The PHP/PHP Line Comment menu command only seems to ADD a comment to a line. For example, click on a line and then select ...
- Wed Nov 12, 2008 1:41 am
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
- Topic: Any way to extend the code-completion data?
- Replies: 20
- Views: 16317
Re: Any way to extend the code-completion data?
I'll give that a try and let you know if it works. The key with Frameworks is that most files are not explicitly included/required. So just scanning for include/require isn't good enough. What some other PHP editors do is to scan *all* files within the application directory tree. Unfortunately, that ...
- Mon Nov 10, 2008 7:28 pm
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
- Topic: Do you need popup help for PHP
- Replies: 10
- Views: 10145
Re: Do you need popup help for PHP
If you do implement any sort of popup/sidebar help, then you need to do it for more than just PHP. What I'd really like to see is a more integrated help system. Right now F1 opens the web browser for PHP, but opens a local help file for CSS. Not sure if it does anything at all for Javascript DOM ...
- Mon Nov 10, 2008 7:24 pm
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
- Topic: Tab improvements
- Replies: 7
- Views: 4858
Re: Tab improvements
The act of right-clicking a tab causes the editor to switch to that tab. However, it looks like it knows how to properly return to the previous tab after closing the window, so it's just more of a visual annoyance and certainly something I can live with for now. Maybe they can just change it so that ...
- Sat Nov 08, 2008 8:11 am
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
- Topic: Can't get Ctrl-/ to work for PHP line comments
- Replies: 2
- Views: 1719
Can't get Ctrl-/ to work for PHP line comments
There is a command in the PHP menu for adding the // comments to a selection. Works fine. If I go into my key mapping and map the Ctrl-/ key to it, the key is displayed in the menu now, but pressing Ctrl-/ doesn't actually activate the function. As far as I can tell, Ctrl-/ isn't assigned to ...
- Sat Nov 08, 2008 8:04 am
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
- Topic: Ctrl-click to call Find Declaration
- Replies: 0
- Views: 1571
Ctrl-click to call Find Declaration
I can tell that you use Delphi to write RapidPHP, so you should already be familiar with this concept. In Delphi, when you hold down the Ctrl key and click on a function or variable, it will jump to the declaration. You already have a right-click Find Declaration function, so it seems like it might ...
- Sat Nov 08, 2008 7:56 am
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
- Topic: Any way to extend the code-completion data?
- Replies: 20
- Views: 16317
Any way to extend the code-completion data?
I use the CodeIgniter framework for my PHP apps. CodeIgniter provides a large number of classes for use in a PHP application. Is there any way to extend the code-completion system so that these classes are available. As an example, in CodeIgniter you can call stuff like this: $this->load->view('file ...
- Sat Nov 08, 2008 7:52 am
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
- Topic: Tab improvements
- Replies: 7
- Views: 4858
Tab improvements
I'd like to see an X button added to each tab to allow closing a tab without switching to it. Also, this is minor, but why is the font used on the tabs not using the default system font? It should be using at least Tahoma, but seems to be MS Sans Serif instead (which is horribly ugly these days). I ...
- Sat Nov 08, 2008 7:48 am
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
- Topic: Problem with PHP code snippets
- Replies: 1
- Views: 1439
Problem with PHP code snippets
I was trying to get PHP code snippets to work. I edited the snippet for "if" and added "if" to the "callword". Now, if I type: function test() { if and then press Ctrl-J, I get this: function test() { if (|) } with the cursor positioned after the (|). So notice that it is inserting the | character ...
- Sat Nov 08, 2008 7:43 am
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
- Topic: Specify a master CSS file(s) for a project
- Replies: 0
- Views: 1359
Specify a master CSS file(s) for a project
When working with templates and other HTML "snippets", the file doesn't usually have it's own link to a CSS file. Usually a separate "header" template is added to the full HTML output by the PHP framework or template system. So, when using the Inspector to view an HTML tag, there isn't anything ...
- Sat Nov 08, 2008 7:40 am
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
- Topic: Specify base PHP file to run for a project
- Replies: 1
- Views: 1922
Specify base PHP file to run for a project
When using frameworks, the PHP file being edited is often just a small part of a project. You can't run one of these "Snippets", it can only be run via the main application's file. For example, with a CodeIgniter project, you need to run the index.php file and not one of the controller files, or ...