You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.6 KiB

  1. menu "Configuration"
  2. depends on PACKAGE_mc
  3. config MC_DIFFVIEWER
  4. bool "Enable internal diff viewer"
  5. default n
  6. help
  7. This option enables the built-in diff viewer.
  8. Disabled by default.
  9. config MC_EDITOR
  10. bool "Enable internal editor"
  11. default y
  12. help
  13. This option enables the built-in file editor.
  14. Enabled by default.
  15. config MC_SUBSHELL
  16. bool "Enable concurrent subshell"
  17. default y
  18. help
  19. This option enables concurrent subshell support.
  20. Enabled by default.
  21. config MC_LARGEFILE
  22. bool "Enable largefile support"
  23. default n
  24. help
  25. This option enables support for large files (> 2 GB).
  26. Disabled by default.
  27. config MC_BACKGROUND
  28. bool "Enable background operations"
  29. default n
  30. help
  31. This option enables support for background operations which
  32. allow to perform some tasks such as copying files in a
  33. separate background process. Background code is known
  34. to be less stable than the rest of the code.
  35. Disabled by default.
  36. config MC_CHARSET
  37. bool "Enable charset support"
  38. default y
  39. help
  40. This option adds support for selecting character set of the text in
  41. the internal viewer and editor and converting it on the fly.
  42. Enabled by default.
  43. config MC_VFS
  44. bool "Enable virtual filesystem support"
  45. default y
  46. help
  47. This option enables the Virtual File System switch code to get
  48. transparent access to the following file systems:
  49. cpio, tar, fish, sfs, ftp, sftp, extfs.
  50. Enabled by default.
  51. endmenu