help.txt 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. *help.txt* Nvim
  2. VIM - main help file
  3. k
  4. Move around: Use the cursor keys, or "h" to go left, h l
  5. "j" to go down, "k" to go up, "l" to go right. j
  6. Close this window: Use ":q<Enter>".
  7. Get out of Vim: Use ":qa!<Enter>" (careful, all changes are lost!).
  8. Jump to a subject: Position the cursor on a tag (e.g. |bars|) and hit CTRL-].
  9. With the mouse: Double-click the left mouse button on a tag, e.g. |bars|.
  10. Jump back: Type CTRL-O. Repeat to go further back.
  11. Get specific help: It is possible to go directly to whatever you want help
  12. on, by giving an argument to the |:help| command.
  13. Prepend something to specify the context: *help-context*
  14. WHAT PREPEND EXAMPLE ~
  15. Normal mode command :help x
  16. Visual mode command v_ :help v_u
  17. Insert mode command i_ :help i_<Esc>
  18. Command-line command : :help :quit
  19. Command-line editing c_ :help c_<Del>
  20. Vim command argument - :help -r
  21. Option ' :help 'textwidth'
  22. Regular expression / :help /[
  23. See |help-summary| for more contexts and an explanation.
  24. Search for help: Type ":help word", then hit CTRL-D to see matching
  25. help entries for "word".
  26. Or use ":helpgrep word". |:helpgrep|
  27. Getting started: Do the Vim tutor, a 30-minute interactive course for the
  28. basic commands, see |vimtutor|.
  29. Read the user manual from start to end: |usr_01.txt|
  30. Vim stands for Vi IMproved. Most of Vim was made by Bram Moolenaar, but only
  31. through the help of many others. See |credits|.
  32. ------------------------------------------------------------------------------
  33. *doc-file-list* *Q_ct*
  34. BASIC:
  35. |quickref| Overview of the most common commands you will use
  36. |tutor| 30-minute interactive course for beginners
  37. |copying| About copyrights
  38. |iccf| Helping poor children in Uganda
  39. |sponsor| Sponsor Vim development, become a registered Vim user
  40. |www| Vim on the World Wide Web
  41. |bugs| Where to send bug reports
  42. USER MANUAL: These files explain how to accomplish an editing task.
  43. |usr_toc.txt| Table Of Contents
  44. Getting Started ~
  45. |usr_01.txt| About the manuals
  46. |usr_02.txt| The first steps in Vim
  47. |usr_03.txt| Moving around
  48. |usr_04.txt| Making small changes
  49. |usr_05.txt| Set your settings
  50. |usr_06.txt| Using syntax highlighting
  51. |usr_07.txt| Editing more than one file
  52. |usr_08.txt| Splitting windows
  53. |usr_09.txt| Using the GUI
  54. |usr_10.txt| Making big changes
  55. |usr_11.txt| Recovering from a crash
  56. |usr_12.txt| Clever tricks
  57. Editing Effectively ~
  58. |usr_20.txt| Typing command-line commands quickly
  59. |usr_21.txt| Go away and come back
  60. |usr_22.txt| Finding the file to edit
  61. |usr_23.txt| Editing other files
  62. |usr_24.txt| Inserting quickly
  63. |usr_25.txt| Editing formatted text
  64. |usr_26.txt| Repeating
  65. |usr_27.txt| Search commands and patterns
  66. |usr_28.txt| Folding
  67. |usr_29.txt| Moving through programs
  68. |usr_30.txt| Editing programs
  69. |usr_31.txt| Exploiting the GUI
  70. |usr_32.txt| The undo tree
  71. Tuning Vim ~
  72. |usr_40.txt| Make new commands
  73. |usr_41.txt| Write a Vim script
  74. |usr_42.txt| Add new menus
  75. |usr_43.txt| Using filetypes
  76. |usr_44.txt| Your own syntax highlighted
  77. |usr_45.txt| Select your language
  78. REFERENCE MANUAL: These files explain every detail of Vim. *reference_toc*
  79. General subjects ~
  80. |intro.txt| general introduction to Vim; notation used in help files
  81. |nvim.txt| Transitioning from Vim
  82. |help.txt| overview and quick reference (this file)
  83. |helphelp.txt| about using the help files
  84. |index.txt| alphabetical index of all commands
  85. |help-tags| all the tags you can jump to (index of tags)
  86. |tips.txt| various tips on using Vim
  87. |message.txt| (error) messages and explanations
  88. |develop.txt| development of Nvim
  89. |debug.txt| debugging Vim itself
  90. |uganda.txt| Vim distribution conditions and what to do with your money
  91. Basic editing ~
  92. |starting.txt| starting Vim, Vim command arguments, initialisation
  93. |editing.txt| editing and writing files
  94. |motion.txt| commands for moving around
  95. |scroll.txt| scrolling the text in the window
  96. |insert.txt| Insert and Replace mode
  97. |change.txt| deleting and replacing text
  98. |undo.txt| Undo and Redo
  99. |repeat.txt| repeating commands, Vim scripts and debugging
  100. |visual.txt| using the Visual mode (selecting a text area)
  101. |various.txt| various remaining commands
  102. |recover.txt| recovering from a crash
  103. Advanced editing ~
  104. |cmdline.txt| Command-line editing
  105. |options.txt| description of all options
  106. |pattern.txt| regexp patterns and search commands
  107. |map.txt| key mapping and abbreviations
  108. |tagsrch.txt| tags and special searches
  109. |windows.txt| commands for using multiple windows and buffers
  110. |tabpage.txt| commands for using multiple tab pages
  111. |spell.txt| spell checking
  112. |diff.txt| working with two to eight versions of the same file
  113. |autocmd.txt| automatically executing commands on an event
  114. |eval.txt| expression evaluation, conditional commands
  115. |builtin.txt| builtin functions
  116. |fold.txt| hide (fold) ranges of lines
  117. |lua.txt| Lua API
  118. |api.txt| Nvim API via RPC, Lua and VimL
  119. Special issues ~
  120. |testing.txt| testing Vim and Vim scripts
  121. |print.txt| printing
  122. |remote_plugin.txt| Nvim support for remote plugins
  123. Programming language support ~
  124. |indent.txt| automatic indenting for C and other languages
  125. |lsp.txt| Language Server Protocol (LSP)
  126. |treesitter.txt| tree-sitter library for incremental parsing of buffers
  127. |diagnostic.txt| Diagnostic framework
  128. |syntax.txt| syntax highlighting
  129. |filetype.txt| settings done specifically for a type of file
  130. |quickfix.txt| commands for a quick edit-compile-fix cycle
  131. |provider.txt| Built-in remote plugin hosts
  132. |ft_ada.txt| Ada (the programming language) support
  133. |ft_ps1.txt| Filetype plugin for Windows PowerShell
  134. |ft_raku.txt| Filetype plugin for Raku
  135. |ft_rust.txt| Filetype plugin for Rust
  136. |ft_sql.txt| about the SQL filetype plugin
  137. Language support ~
  138. |digraph.txt| list of available digraphs
  139. |mbyte.txt| multibyte text support
  140. |mlang.txt| non-English language support
  141. |rileft.txt| right-to-left editing mode
  142. |arabic.txt| Arabic language support and editing
  143. |hebrew.txt| Hebrew language support and editing
  144. |russian.txt| Russian language support and editing
  145. GUI ~
  146. |gui.txt| Graphical User Interface (GUI)
  147. Interfaces ~
  148. |if_cscop.txt| using Cscope with Vim
  149. |if_perl.txt| Perl interface
  150. |if_pyth.txt| Python interface
  151. |if_ruby.txt| Ruby interface
  152. |sign.txt| debugging signs
  153. Versions ~
  154. |vim_diff.txt| Main differences between Nvim and Vim
  155. |vi_diff.txt| Main differences between Vim and Vi
  156. |deprecated.txt| Deprecated items that have been or will be removed
  157. Other ~
  158. |terminal_emulator.txt| Terminal buffers
  159. |term.txt| Terminal UI
  160. |ui.txt| Nvim UI protocol
  161. |channel.txt| Nvim asynchronous IO
  162. |dev_style.txt| Nvim style guide
  163. |job_control.txt| Spawn and control multiple processes
  164. *standard-plugin-list*
  165. Standard plugins ~
  166. |matchit.txt| Extended |%| matching
  167. |pi_gzip.txt| Reading and writing compressed files
  168. |pi_health.txt| Healthcheck framework
  169. |pi_msgpack.txt| msgpack utilities
  170. |pi_netrw.txt| Reading and writing files over a network
  171. |pi_paren.txt| Highlight matching parens
  172. |pi_spec.txt| Filetype plugin to work with rpm spec files
  173. |pi_tar.txt| Tar file explorer
  174. |pi_zip.txt| Zip archive explorer
  175. LOCAL ADDITIONS: *local-additions*
  176. ------------------------------------------------------------------------------
  177. *bars* Bars example
  178. Now that you've jumped here with CTRL-] or a double mouse click, you can use
  179. CTRL-T, CTRL-O, g<RightMouse>, or <C-RightMouse> to go back to where you were.
  180. Note that tags are within | characters, but when highlighting is enabled these
  181. characters are hidden. That makes it easier to read a command.
  182. Anyway, you can use CTRL-] on any word, also when it is not within |, and Vim
  183. will try to find help for it. Especially for options in single quotes, e.g.
  184. 'hlsearch'.
  185. ------------------------------------------------------------------------------
  186. vim:tw=78:isk=!-~,^*,^\|,^\":ts=8:noet:ft=help:norl: