PB IDE plugin : smart indent, remove spaces, autocompletions
- Michael Vogel
- Addict 
- Posts: 2820
- Joined: Thu Feb 09, 2006 11:27 pm
- Contact:
The program gets better and better, thanks!
Some ideas for the program...
- (sometimes) it can take a while until a long source is formated - a button (in the option menu) to format the whole source would be fine
- the "do you want TO install the tool?" questions seems to have been interpreted as a code, because the "TO" has a capitalized "T"
- it would be fine to see the version number in the "install" message above
- I would like to be able to disable the splash screen as well
Michael
			
			
									
									
						Some ideas for the program...
- (sometimes) it can take a while until a long source is formated - a button (in the option menu) to format the whole source would be fine
- the "do you want TO install the tool?" questions seems to have been interpreted as a code, because the "TO" has a capitalized "T"
- it would be fine to see the version number in the "install" message above
- I would like to be able to disable the splash screen as well
Michael
[released v2.9] 
- ADDED : splashscreen option
- ADDED : format whole source after loading
- UPDATED : installer
If you have time to test it with a big source file, give me your feedback and report me any problems.
remark : 'last opened files' are not formatted, I have to fix that. 
 

			
			
									
									- ADDED : splashscreen option
- ADDED : format whole source after loading
- UPDATED : installer
If you have time to test it with a big source file, give me your feedback and report me any problems.
remark : 'last opened files' are not formatted, I have to fix that.
 
 
 win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool- 
				SofT MANiAC
- Enthusiast 
- Posts: 142
- Joined: Mon Sep 17, 2007 10:28 am
- Location: P.O.P
- Contact:
- Michael Vogel
- Addict 
- Posts: 2820
- Joined: Thu Feb 09, 2006 11:27 pm
- Contact:
[released v3.0] 
- FIXED : editor focus at start
- FIXED : source formatting (multi-files opening) *
* I can't format any files loaded at the start of editor.
Because the editor launches external tools after loading all files.
TODO Idea :
- remove extra empty lines
- format spaces
- compilerIf..Endif margin marks
- translation files
- lexer constant file
- tooltip to preview hidden folded content
			
			
									
									- FIXED : editor focus at start
- FIXED : source formatting (multi-files opening) *
* I can't format any files loaded at the start of editor.
Because the editor launches external tools after loading all files.

TODO Idea :
- remove extra empty lines
- format spaces
- compilerIf..Endif margin marks
- translation files
- lexer constant file
- tooltip to preview hidden folded content
 win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool- 
				SofT MANiAC
- Enthusiast 
- Posts: 142
- Joined: Mon Sep 17, 2007 10:28 am
- Location: P.O.P
- Contact:
constructions like 
makes your tool crazy:
			
			
									
									Code: Select all
Macro Ca (cname)
  Structure d#cname
  ; a.w
EndMacro
Macro Ca2 (cname)
  Structure d#cname
  ; a.w
EndMacroCode: Select all
Macro Ca (cname)
  Structure d#cname
    ; a.w
  EndMacro
  
  Macro Ca2 (cname)
    Structure d#cname
      ; a.w
    EndMacroPOiNT.OF.PRESENCE group
						- 
				SofT MANiAC
- Enthusiast 
- Posts: 142
- Joined: Mon Sep 17, 2007 10:28 am
- Location: P.O.P
- Contact:
I can't reproduce this problem.SofT MANiAC wrote:Also "Folding" settings ignored
For the moment I'll fix the MACRO problem.
					Last edited by eddy on Thu May 08, 2008 8:03 pm, edited 1 time in total.
									
			
									 win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool- 
				SofT MANiAC
- Enthusiast 
- Posts: 142
- Joined: Mon Sep 17, 2007 10:28 am
- Location: P.O.P
- Contact:
IDE -> "Preferences" -> Foldingeddy wrote:I can't reproduce this problemSofT MANiAC wrote:Also "Folding" settings ignored
it would be good to add option "Indent Folding Keywords"
Just I don't know another way to indent custom keywords
For example:
Code: Select all
; now (PureBasic Editor Extension v3.0)
MyKeyword
<some code>
EndMyKeyword
; must be
MyKeyword
  <some code>
EndMyKeywordPOiNT.OF.PRESENCE group
						can't downloadData File Host wrote:Invalid file ID.
greetings
Thomas
PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

						Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.





