Difference between revisions of "WinHugs/Bugs"

From HaskellWiki
Jump to navigation Jump to search
(Add FFI note)
Line 57: Line 57:
   
 
Required, so I can release things more easily and never get it wrong
 
Required, so I can release things more easily and never get it wrong
  +
  +
=== FFI doesn't work ===
  +
  +
Nothing to do with FFI works, since I don't have a clue how FFI works myself.
   
 
== Enhancements ==
 
== Enhancements ==

Revision as of 00:19, 7 February 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


chr 255

seems that WinHugs hates to do binary I/O :)))

Main> putChar (chr 255)
я
Program error: <stdout>: Prelude.putChar: does not exist (file does not exist)

the same problem in this program:

import System.IO
import Data.Char
main = do h <- openBinaryFile "test" WriteMode
        hPutChar h (chr 255)
        hPutChar h 'a'  -- never executed


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.

Automated package build

Required, so I can release things more easily and never get it wrong

FFI doesn't work

Nothing to do with FFI works, since I don't have a clue how FFI works myself.

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.

Bracket Matching

See if you can automatically match brackets when typing at the prompt

Automatic type display

When you type a lexeme, see if you can automatically put its type in the status bar.