Search found 7 matches

by molkenstehler
Fri Jun 07, 2019 9:25 pm
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Prevent template customization from overriding by upgrade
Replies: 1
Views: 2333

Prevent template customization from overriding by upgrade

I'm using customized templates for standard files, like "New HTML file". With every upgrade/update, it gets overridden. Is there a way to prevent this override? For me, it's important to use the standard "New HTML file" Button because I just personalize the template with my individual preferences.
by molkenstehler
Thu Feb 14, 2019 11:14 am
Forum: Plugins for HTMLPad / Rapid CSS / Rapid PHP / WeBuilder
Topic: Plugin: DocBlock Comments v1.33
Replies: 17
Views: 41158

Re: Plugin: DocBlock Comments v1.32

The Insertion of a doc block for an abstract method don't work. It's just inserting blanks and move the Cursor, but that's all. After an Abstract method it's not possible to insert any doc block. Post a bug report at https://github.com/pmk65/wbp-docblockcomments including a code example I can use ...
by molkenstehler
Wed Feb 13, 2019 9:01 pm
Forum: Plugins for HTMLPad / Rapid CSS / Rapid PHP / WeBuilder
Topic: Plugin: DocBlock Comments v1.33
Replies: 17
Views: 41158

Re: Plugin: DocBlock Comments v1.32

The Insertion of a doc block for an abstract method don't work. It's just inserting blanks and move the Cursor, but that's all. After an Abstract method it's not possible to insert any doc block.
by molkenstehler
Wed Feb 13, 2019 8:59 pm
Forum: Announcements
Topic: Update: 2018 15.4.0.206
Replies: 3
Views: 12820

Re: Update: 2018 15.4.0.206

There a problem with the child-editor-window. Every time when there's an autocompletion the Focus will switch to the main window. We had this problem in earlier versions, but it was solved. Now it's back.
by molkenstehler
Fri Apr 08, 2016 8:20 pm
Forum: Announcements
Topic: Update: 2016 Beta2 (free for everybody)
Replies: 21
Views: 50804

Re: Update: 2016 Beta2 (free for everybody)

Great new version of your software ... many thanks and gratulation! You find the heredoc-Syntax and you allowed to free editor-tabs to -windows. That's great! What's not working: When you are working in the external windows the Plugins did some problems. Have to delete some plugins to use the ...
by molkenstehler
Sun Apr 05, 2015 11:06 pm
Forum: Plugins for HTMLPad / Rapid CSS / Rapid PHP / WeBuilder
Topic: Plugin: Move Selected Lines
Replies: 4
Views: 7720

Re: Plugin: Move Selected Lines

I've found a solution. May it's not the best, but it works, also with very big files up to 26 MB (this was an fault and not usual in web environment): function GoToLastRow(Sender) { Editor.SelectAll; var sel = Editor.Selection; sel.SelStartLine = sel.SelEndLine; Editor.Selection = sel; sel = Editor ...
by molkenstehler
Sun Apr 05, 2015 10:38 pm
Forum: Plugins for HTMLPad / Rapid CSS / Rapid PHP / WeBuilder
Topic: Plugin: Move Selected Lines
Replies: 4
Views: 7720

Re: Plugin: Move Selected Lines

My Question like these so I decided to post here:

I would like to move to the last line of some bigger files (around 3.000 Lines). How can I realise it? Can someone please give me an idea.