Enable -Wunused-but-set-variable flag by default.
[midnight-commander.git] / doc / TODO
blobf2c3419747755f3c4b913a731f315fb74edacfb9
1 Before 4.6.2
2 ============
4 mc manual: describe new Find File feature options (find Recursively,
5 case Sensitive and Regular expression) 
6 mc manual: Add Environment Variables section
8 Check all instances of const_cast and str_unconst, remove the
9 unnecessary and comment the rest.
11 Clean up #include's in all files.
13 Make mc work with 64 bit data types. This includes support for 64 bit
14 processors, 64 bit operating systems and 64 bit file sizes. Generalizing
15 this, mc should use datatypes as they are appropriate.
17 Remove all instances of type casts on function pointers. Run the
18 following command to get a list of function pointer types.
19     grep -r 'typedef.*(\*' . \
20     | sed -n 's/.*(\*\([[:alnum:]_]*\)).*/(\1)/p' \
21     | sort -u \
22     > fn-types.txt
23 Then use fgrep to find illegal uses of these types.
24     fgrep -r "`cat fn-types.txt`" .
25 Fix these uses by writing small wrapper functions.
27 When saving a file is not possible, mcedit should ask the user what to
28 do:
29 - su(1) to another user and try again
30 - sudo
31 - change permissions of the file or the containg directory
32 - other smart things
34 Due to problems in the VFS, files are not written back after being edited
35 over VFS with an external editor.
37 Allow pathnames starting with spaces in vfs/extfs.
39 Hide the passwords when displaying mcvfs path names.
41 Broken pipe warning when viewing large *.tar.gz files.  Warnings should
42 be shown before the viewer is started if possible.
44 Cannot spell check unsaved files in the editor.
46 Dynamic loading for libgpm, libext2fs.
48 Check if the archive was changed for extfs, tar and cpio.  Free the data
49 associated with the old archive.
51 Ctrl-q Ctrl-m in input dialog should enter \r, not a newline.
53 Interpret C literals in regular expressions entered by the user, e.g. \r
54 and \0x0D.
56 Allow entering archives in VFS by Ctrl-PgDown with non-empty command
57 line.  Right now, there is no convenient way to enter an archive when
58 the command line is not empty.
60 Allow switching between histories of two panels.  It's convenient to
61 change to a directory from the history of the other panel.
63 Allow calling the directory hotlist from Copy, Move and Find File
64 dialogs.  Recent directories are the obvious candidates for copying and
65 looking for files.
67 Allow modifiers for keys in mc.lib, like "shift-up".  Right now,
68 modifiers can be read from the terminal (if supported), but not from the
69 config file.  This change would make it possible to use modifiers even
70 if they can only be identified by the escape sequences.
72 When saving config files, write to a copy, then replace the file.  This
73 would avoid the problem of partly written config files.  Consider using
74 locking of the config files.
76 Totals are not calculated when copying or moving a single directory. 
77 Totals should only be omitted for single files.
79 Recheck all mouse handlers, make sure that they check button number.  We
80 don't want mouse scrolling to be interpreted as mouse click.
82 Smooth mouse scrolling on panels.  Scrolling one page per step is too
83 fast.
85 Don't read prompt from the subshell, because it's unreliable.  Interpret
86 environment variable MC_PS1 (or PS1) in the same way as bash.
88 Support an environment variable (also like PS1 in bash) for setting the
89 window title.
91 real_input_dialog_help() shouldn't use translated strings in the section
92 names in .mc/history.  Right now, mc writes separate history sections
93 for different locales.  Only input history is affected.
95 Add "Ignore" and "Ignore all" buttons when reporting permission
96 problems.
98 Better date parser - don't allow seconds and year in ftp listings on the
99 same line.
101 Report errors in fish operations and recover from them.
103 Allow colors to be defined in the mc.lib file.  Make it possible to
104 avoid using a super-long line to redefine all colors.
106 Allow verbatim search in "Find File".  Right now, the context is always
107 interpreted as regular expression.
109 Filters in the editor should operate on the open file - don't close and
110 reopen the file.  They don't work on VFS now.  For example, a gzipped
111 files on FTP cannot be edited.
113 ftp and fish with home != '/' - readjust directory to the home.
115 Search in the viewer should have an option for case sensitive search.
117 Make "Find File" dialog more responsive.  Keep state in a structure and
118 preserve it when the search is suspended.
120 Use KDGKBENT ioctl on Linux console to find the mapping for shifted
121 functional keys.  Two mappings are widely used (Shift-F1 = F11 and
122 Shift-F1 = F13).  mc should adjust the keys to the mapping.
124 Alt-O should optionally show the current directory and move cursor down
125 (as in older versions).  Old functionality on files (go to "..") is not
126 needed.
129 After 4.6.2 on 4.6.x branch
130 ===========================
132 Make the internal editor reentrant.  Add "edit menu file" to the editor
133 menu.
135 Safe and restore file position in the viewer.
137 Consistent support for mc.lib.
139 Consistent support for terminal-specific settings.
141 New syntax for mc.ext - path check, desktop environment check.  Detach X
142 programs into a separate process group.  Allow forcing the full path on
143 local files.
145 Click on an image doesn't always work on remote vfs - local copy may
146 be deleted before the application has time to load it.
148 Allow running executables from remote VFS.  Possibly warn the user.
150 Add print dialog in the internal editor.
152 Implement logging, not just for VFS.
154 "Find file" should remember full starting path, not "." in the history.
157 In the 4.7 branch
158 =================
160 Eliminate all pipes in subshell.c, run pwd after kill.  Add support for
161 more shells (e.g. ksh).
163 Internal terminal - no more console saving.
165 Implement a really Advanced Chown/Chmod.
167 Support for multi-byte charsets (e.g. UTF-8).
169 sftp and fxp support in VFS.
171 New listing mode keyword "time": mtime or the time (atime, ctime) used
172 to sort files.
174 Support for X clipboard.
176 Provide "patch" and "diff" editors. The patch editor will automatically
177 adjust the line numbers of the following chunks when lines are deleted
178 or inserted at the beginning of the file.
180 Provide context menus for files. Possible actions include: [compile],
181 [CVS commit], [CVS diff -up], [pack], [unpack], [grep].
183 Make mc a CVS frontend comparable to Eclipse-3.0.
185 More standard Widgets: WTreeView, WDirectoryList, WGroupBox, WTextArea,
186 WOpenDialog, WSaveDialog, WPrintDialog, WKeyBar.
188 ========================================================================
189 Everything below this point is the old TODO list.  It doesn't reflect
190 the current priorities of the developers, but may contain interesting
191 ideas still waiting for their implementation.
192 ========================================================================
195 * Bugs
197   - "Files" message flickers a lot when copying files.
199   - Make the extfs handle re-reads.
201   - Document (or remove) C-x C-r, C-x C-s.
203   - Check that all the help contexts exist on the help file.
205   - Make the buttonbar for the tree box work.
207   - In the incremental search mode, when backspacing, select the
208     correct file, do not stop in current file.
210   - Make C-y yank back all the killed text at once if you've just done
211     several kill operations in a row (C-k, M-d, etc).
213   - In learn keys, warn the user if he is trying to
214     i) define a same sequence as an already defined (if the keycode differs)
215     ii) define a sequence, which is a prefix of other longer and already
216         defined sequence
218 * Configuration 
220 * Documentation
222   - Convert the source mc.1 to mc.sgml and create automagically from it
223     mc.1, mc.html, mc.hlp, mc.info, mc.tex, mc.txt etc.
225 * Extensions
227    - Hotlist should allow people to edit the entry (like we do in the external
228      panelize thing).
230    - Change ext.c to allow the %{..} to recursively expand any other %thingies.
232    - Write a general grow_string routine.  This code is used in the internal
233      viewer and would also be used in the profile.c code.
235    -  A command to set the line length to a fixed value for viewing
236       fixed length binary files. LIST does this with Ctrl-B and then
237       prompts for a "record" length.
239    - Viewer: Mark all found matches, and when 'n' is pressed go to the
240      next page, not the next match on the same screen (when there is
241      more than one).
243   - In ftpfs_open, extfs_open, if we set local_filename to tmpnam, use
244     a mechanism to set local_filename to another place on the local
245     diskspace (this would be useful for copying, so that we would save
246     some tmp space). This would require special care in file.c afterwards.
248   - In Listing mode... give at least three user-definable formats
249     (using Janne's Listing mode editor) and assign hot-keys to both
250     standard and user defined (what about c-x f [fbl123] ?).
252   - Shift-Home, Shift-End for the input line: home and end.
254   - Make a mechanism to lock all the mouse events and send them to
255     the locking widget until unlocking is done.
257   - Sort with numerical extensions.
259   - Allow the program to execute a command even when we are on a vfs, maybe
260     a special box, or make subshell code ignore the change directory
261     request. Perhaps each vfs should store a local path attached to it,
262     like in tarfs, extfs it would be the directory which contains the
263     topmost tararchive, in ftpfs it would be the directory which we entered
264     to ftp from.
266   - auto_hint_lines: a variable that would choose to use hint mode when
267     at least auto_hint_lines are visible.
269   - Listbox: Mouse handler for the scrollbar: this will be hard with
270     the current approach (since the listbox scrollbar is drawn *outside*
271     the listbox control area).
273   - In file.c, we shouldn't need to get a full path name in order to
274     work, we should instead canon the file name inside the tar.c (the
275     only fs that relies on this), tar.c should know about the cwd (i
276     think).
278   - Panelize the selected files.
280   - Recursive delete should (perhaps as an option) delete files just after
281     they have been copied and not to delay deleting until everything was
282     moved.
284   - When copying a tree (or moving or deleting), as an option act primarily
285     on the regular files and at the end on directories recursively, so that
286     we get complete high parts of the tree if something fails (useful for
287     ftpfs).
289   - Put into a new and bigger Options/Configuration dialog all the options
290     we have now to set using .mc/ini manually.
292   - When after deleting there are no files in a panelized panel, restore
293     it automagically to the real directory content.
295   - Files/Symlink and Link should be able to do multiple links (if the
296     target is a directory).
298   - Directory sizes should work in background using try_channels.
300   - Support of non-UNIX ls in ftpfs. Perhaps using an ascii configuration
301     file similar to moxftp.
303   - Have an option to let the user choose the preferred keybindings.
304     Currently, only the emacs keybindings are supported, add support
305     for Norton Commander and vi keybindings.
307   - Find command should have a way to specify directories to skip.
309   - Add an option that will let listboxes do incremental searches.
311 * Optimizations and cleanup
313   - When verbose is off, remove all the clutter on the screen about
314     the files being copied.
316   - The viewer is calling view_update in many places, I call
317     view_update after handling a key, should all the other
318     view_updates be removed?
320   - If the viewer is too slow, some caching could be done.
321     width and cols are currently computed each time they are needed.
323  ++ In the user menu, don't use the entries array, we can now grow
324     dynamically.  I should take a look at this one day, it's easy to
325     fix.