Difference between revisions of "WinHugs/Bugs"

From HaskellWiki
Jump to navigation Jump to search
Line 41: Line 41:
 
=== Putting '\0' ===
 
=== Putting '\0' ===
   
 
putChar '\0'
btw, "putChar '\0'" in WinHugs still prints nothing, in contrast to
 
  +
"putChar '\1'"
 
  +
This prints out nothing
  +
  +
putChar '\1'
  +
  +
This prints out the character 1, which comes out as a box on pretty much all systems.
  +
  +
What should the 0 version do? You certainly can't output a 0 character, since that isn't supported by the underlying rich text box. We could output a 1 character, which appears like a box anyway, but then copy/paste won't work - although I don't think you can copy and paste a 0 character anyway.
   
 
== Enhancements ==
 
== Enhancements ==

Revision as of 16:42, 19 January 2006

This is a list of bugs and features, and peoples thoughts on them. Please just add things, if it's an opinion on a feature or something, please sign your name. Especially if a feature is important to you, say how important it is and why you think its a good idea.

Polish

These aren't really bugs, they just need looking at before a final release. Mainly just polishing rough edges and checking for consistency.

  • Unicode
  • update the documentation
  • keyboard accelerators, Ctrl+C, Ctrl+V etc.
  • correctly align and space the options dialog
  • add more text editor support (as people ask!)

Bugs

These are things which are accepted as being wrong

Does Not Work on Windows 98

Active bug, I'm still trying to get Virtual PC and try it out on Win98.

Excessive Clearing

Excessive clearing of previous part of the screen, once it starts to wrap round

Occasional Screen Glitches

I don't know why these happen, the screen code is rather complicated...

Terminal interaction

Inline system calls, i.e. "system dir" returns the results to the terminal, not the WinHugs window.

Textpad vs DDE

Open textpad with new command: C:\Program Files\TextPad 4\TextPad.exe -s %s(%d) (fixes DDE problems on certain systems, opens multiple instances on others...)

:edit

(colon)edit starts editing a weird file. Should create a new file in my documents and open that.

Putting '\0'

putChar '\0'

This prints out nothing

putChar '\1'

This prints out the character 1, which comes out as a box on pretty much all systems.

What should the 0 version do? You certainly can't output a 0 character, since that isn't supported by the underlying rich text box. We could output a 1 character, which appears like a box anyway, but then copy/paste won't work - although I don't think you can copy and paste a 0 character anyway.

Enhancements

cpphs support

Allow it to compile files with preprocessor directives, by automatically running cpphs on them first.

Less verbose file listing

Should be an option to list all files not in the Hugs directory loaded

Command History

also i want to suggest saving history of commands in the registry (or disk file) - this proved to be very useful in other shells. and about window with list of all commands - my shell (FAR manager) saves all the commands i use (now this list contains ~5000 ones!) and when i open this list and start to type some word, it just filers whole list and show only commands which contains this sequence of letters. that is damn useful. just for example i open this window and typed "hugs" - FAR filters out 146 commands which includes this word:

Error Highlighting

When an error occurs, see if you can "hilight" the bad bit on the screen.