Advertisement
Juffo-Wup

Untitled

Feb 24th, 2024
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. remstats@kommissar:~$ vim --help
  2. VIM - Vi IMproved 9.0 (2022 Jun 28, compiled May 04 2023 10:24:44)
  3.  
  4. Usage: vim [arguments] [file ..] edit specified file(s)
  5. or: vim [arguments] - read text from stdin
  6. or: vim [arguments] -t tag edit file where tag is defined
  7. or: vim [arguments] -q [errorfile] edit file with first error
  8.  
  9. Arguments:
  10. -- Only file names after this
  11. -v Vi mode (like "vi")
  12. -e Ex mode (like "ex")
  13. -E Improved Ex mode
  14. -s Silent (batch) mode (only for "ex")
  15. -d Diff mode (like "vimdiff")
  16. -y Easy mode (like "evim", modeless)
  17. -R Readonly mode (like "view")
  18. -Z Restricted mode (like "rvim")
  19. -m Modifications (writing files) not allowed
  20. -M Modifications in text not allowed
  21. -b Binary mode
  22. -l Lisp mode
  23. -C Compatible with Vi: 'compatible'
  24. -N Not fully Vi compatible: 'nocompatible'
  25. -V[N][fname] Be verbose [level N] [log messages to fname]
  26. -D Debugging mode
  27. -n No swap file, use memory only
  28. -r List swap files and exit
  29. -r (with file name) Recover crashed session
  30. -L Same as -r
  31. -A Start in Arabic mode
  32. -H Start in Hebrew mode
  33. -T <terminal> Set terminal type to <terminal>
  34. --not-a-term Skip warning for input/output not being a terminal
  35. --ttyfail Exit if input or output is not a terminal
  36. -u <vimrc> Use <vimrc> instead of any .vimrc
  37. --noplugin Don't load plugin scripts
  38. -p[N] Open N tab pages (default: one for each file)
  39. -o[N] Open N windows (default: one for each file)
  40. -O[N] Like -o but split vertically
  41. + Start at end of file
  42. +<lnum> Start at line <lnum>
  43. --cmd <command> Execute <command> before loading any vimrc file
  44. -c <command> Execute <command> after loading the first file
  45. -S <session> Source file <session> after loading the first file
  46. -s <scriptin> Read Normal mode commands from file <scriptin>
  47. -w <scriptout> Append all typed commands to file <scriptout>
  48. -W <scriptout> Write all typed commands to file <scriptout>
  49. -x Edit encrypted files
  50. --startuptime <file> Write startup timing messages to <file>
  51. --log <file> Start logging to <file> early
  52. -i <viminfo> Use <viminfo> instead of .viminfo
  53. --clean 'nocompatible', Vim defaults, no plugins, no viminfo
  54. -h or --help Print Help (this message) and exit
  55. --version Print version information and exit
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement